diff --git a/actions/allrss.php b/actions/allrss.php
index 28b1be27d8..4a5d15c7b7 100644
--- a/actions/allrss.php
+++ b/actions/allrss.php
@@ -56,7 +56,7 @@ class AllrssAction extends Rss10Action
*
* @param array $args Web and URL arguments
*
- * @return boolean false if user doesn't exist
+ * @return boolean false if user does not exist
*/
function prepare($args)
{
diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php
index 96179f175b..c7c0e7c001 100644
--- a/actions/apiaccountratelimitstatus.php
+++ b/actions/apiaccountratelimitstatus.php
@@ -36,7 +36,7 @@ if (!defined('STATUSNET')) {
require_once INSTALLDIR . '/lib/apibareauth.php';
/**
- * We don't have a rate limit, but some clients check this method.
+ * We do not have a rate limit, but some clients check this method.
* It always returns the same thing: 150 hits left.
*
* @category API
diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php
index 72fb361bf8..2f8e9628c4 100644
--- a/actions/apiaccountupdateprofileimage.php
+++ b/actions/apiaccountupdateprofileimage.php
@@ -102,7 +102,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction
}
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php
index 1cab2df5d0..4f941f6c32 100644
--- a/actions/apiblockcreate.php
+++ b/actions/apiblockcreate.php
@@ -94,7 +94,7 @@ class ApiBlockCreateAction extends ApiAuthAction
}
if (empty($this->user) || empty($this->other)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php
index 16dbf94caf..328f18ab0d 100644
--- a/actions/apiblockdestroy.php
+++ b/actions/apiblockdestroy.php
@@ -93,7 +93,7 @@ class ApiBlockDestroyAction extends ApiAuthAction
}
if (empty($this->user) || empty($this->other)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php
index a21fe86d20..5b3f412adc 100644
--- a/actions/apidirectmessage.php
+++ b/actions/apidirectmessage.php
@@ -74,7 +74,7 @@ class ApiDirectMessageAction extends ApiAuthAction
$this->user = $this->auth_user;
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php
index ca1ee70dde..fed6acc30e 100644
--- a/actions/apidirectmessagenew.php
+++ b/actions/apidirectmessagenew.php
@@ -72,7 +72,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction
$this->user = $this->auth_user;
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php
index 3d9b7e001c..fb73624c9a 100644
--- a/actions/apifriendshipsdestroy.php
+++ b/actions/apifriendshipsdestroy.php
@@ -113,7 +113,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction
return;
}
- // Don't allow unsubscribing from yourself!
+ // Do not allow unsubscribing from yourself!
if ($this->user->id == $this->other->id) {
$this->clientError(
diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php
index f66e830738..895dfb7aba 100644
--- a/actions/apigroupcreate.php
+++ b/actions/apigroupcreate.php
@@ -109,7 +109,7 @@ class ApiGroupCreateAction extends ApiAuthAction
}
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php
index a8a40a6b3b..a822d18ddd 100644
--- a/actions/apigroupismember.php
+++ b/actions/apigroupismember.php
@@ -87,7 +87,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction
parent::handle($args);
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php
index 071cd9290f..ffda3986ff 100644
--- a/actions/apigroupjoin.php
+++ b/actions/apigroupjoin.php
@@ -96,7 +96,7 @@ class ApiGroupJoinAction extends ApiAuthAction
}
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php
index 0d4bb9e4d3..8665ea1aa8 100644
--- a/actions/apigroupleave.php
+++ b/actions/apigroupleave.php
@@ -96,7 +96,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
}
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php
index c529c1e408..7b05f8a96c 100644
--- a/actions/apigrouplist.php
+++ b/actions/apigrouplist.php
@@ -87,7 +87,7 @@ class ApiGroupListAction extends ApiBareAuthAction
parent::handle($args);
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php
index e369fa71ee..5c23acccae 100644
--- a/actions/apistatusesupdate.php
+++ b/actions/apistatusesupdate.php
@@ -136,7 +136,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction
}
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php
index bc68dd192a..2c691bb84c 100644
--- a/actions/apisubscriptions.php
+++ b/actions/apisubscriptions.php
@@ -84,7 +84,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return false;
}
diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php
index b8ae74f137..f84d7b4cb7 100644
--- a/actions/apitimelinefavorites.php
+++ b/actions/apitimelinefavorites.php
@@ -67,7 +67,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php
index 66dd3f2b29..e84f773723 100644
--- a/actions/apitimelinefriends.php
+++ b/actions/apitimelinefriends.php
@@ -76,7 +76,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php
index fe5ff0f28f..0956ccdceb 100644
--- a/actions/apitimelinementions.php
+++ b/actions/apitimelinementions.php
@@ -76,7 +76,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php
index 285735fd1a..ca1d217725 100644
--- a/actions/apitimelineuser.php
+++ b/actions/apitimelineuser.php
@@ -78,7 +78,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
- $this->clientError(_('No such user!'), 404, $this->format);
+ $this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/attachment.php b/actions/attachment.php
index 6981354d10..ca9e578457 100644
--- a/actions/attachment.php
+++ b/actions/attachment.php
@@ -146,7 +146,7 @@ class AttachmentAction extends Action
}
/**
- * Don't show local navigation
+ * Do not show local navigation
*
* @return void
*/
@@ -170,7 +170,7 @@ class AttachmentAction extends Action
}
/**
- * Don't show page notice
+ * Do not show page notice
*
* @return void
*/
diff --git a/actions/avatarbynickname.php b/actions/avatarbynickname.php
index 537950792f..1a6925e119 100644
--- a/actions/avatarbynickname.php
+++ b/actions/avatarbynickname.php
@@ -49,7 +49,7 @@ class AvatarbynicknameAction extends Action
*
* @param array $args query arguments
*
- * @return boolean false if nickname or user isn't found
+ * @return boolean false if nickname or user is not found
*/
function handle($args)
{
diff --git a/actions/deletenotice.php b/actions/deletenotice.php
index 4a48a9c346..ba8e86d0f4 100644
--- a/actions/deletenotice.php
+++ b/actions/deletenotice.php
@@ -67,7 +67,7 @@ class DeletenoticeAction extends Action
common_user_error(_('Not logged in.'));
exit;
} else if ($this->notice->profile_id != $this->user_profile->id &&
- !$this->user->hasRight(Right::deleteOthersNotice)) {
+ !$this->user->hasRight(Right::DELETEOTHERSNOTICE)) {
common_user_error(_('Can\'t delete this notice.'));
exit;
}
diff --git a/actions/groupblock.php b/actions/groupblock.php
index 979a56a81d..133101eb7a 100644
--- a/actions/groupblock.php
+++ b/actions/groupblock.php
@@ -95,7 +95,7 @@ class GroupblockAction extends Action
$this->clientError(_('User is already blocked from group.'));
return false;
}
- // XXX: could have proactive blocks, but we don't have UI for it.
+ // XXX: could have proactive blocks, but we do not have UI for it.
if (!$this->profile->isMember($this->group)) {
$this->clientError(_('User is not a member of group.'));
return false;
diff --git a/actions/login.php b/actions/login.php
index ad57dd6678..679817520f 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -159,7 +159,7 @@ class LoginAction extends Action
$url = common_get_returnto();
if ($url) {
- // We don't have to return to it again
+ // We do not have to return to it again
common_set_returnto(null);
} else {
$url = common_local_url('all',
diff --git a/actions/logout.php b/actions/logout.php
index 1e0adae575..7e768fca63 100644
--- a/actions/logout.php
+++ b/actions/logout.php
@@ -81,7 +81,7 @@ class LogoutAction extends Action
{
common_set_user(null);
common_real_login(false); // not logged in
- common_forgetme(); // don't log back in!
+ common_forgetme(); // do not log back in!
}
}
diff --git a/actions/microsummary.php b/actions/microsummary.php
index 5c01a9ce0f..5c761e8bb6 100644
--- a/actions/microsummary.php
+++ b/actions/microsummary.php
@@ -59,7 +59,7 @@ class MicrosummaryAction extends Action
$user = User::staticGet('nickname', $nickname);
if (!$user) {
- $this->clientError(_('No such user'), 404);
+ $this->clientError(_('No such user.'), 404);
return;
}
diff --git a/actions/newmessage.php b/actions/newmessage.php
index 095a7d1d34..73307fdfc5 100644
--- a/actions/newmessage.php
+++ b/actions/newmessage.php
@@ -61,7 +61,7 @@ class NewmessageAction extends Action
/**
* Title of the page
*
- * Note that this usually doesn't get called unless something went wrong
+ * Note that this usually does not get called unless something went wrong
*
* @return string page title
*/
@@ -113,7 +113,7 @@ class NewmessageAction extends Action
$this->other = User::staticGet('id', $this->to);
if (!$this->other) {
- $this->clientError(_('No such user'), 404);
+ $this->clientError(_('No such user.'), 404);
return false;
}
diff --git a/actions/newnotice.php b/actions/newnotice.php
index fbd7ab6bce..fc06e5c986 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -59,7 +59,7 @@ class NewnoticeAction extends Action
/**
* Title of the page
*
- * Note that this usually doesn't get called unless something went wrong
+ * Note that this usually does not get called unless something went wrong
*
* @return string page title
*/
diff --git a/actions/opensearch.php b/actions/opensearch.php
index d5e6698f38..b205d2fe27 100644
--- a/actions/opensearch.php
+++ b/actions/opensearch.php
@@ -52,7 +52,7 @@ class OpensearchAction extends Action
*
* @param array $args query arguments
*
- * @return boolean false if user doesn't exist
+ * @return boolean false if user does not exist
*/
function handle($args)
{
@@ -75,7 +75,7 @@ class OpensearchAction extends Action
$this->element('Url', array('type' => 'text/html', 'method' => 'get',
'template' => str_replace('---', '{searchTerms}', common_local_url($type, array('q' => '---')))));
$this->element('Image', array('height' => 16, 'width' => 16, 'type' => 'image/vnd.microsoft.icon'), common_path('favicon.ico'));
- $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), theme_path('logo.png'));
+ $this->element('Image', array('height' => 50, 'width' => 50, 'type' => 'image/png'), Theme::path('logo.png'));
$this->element('AdultContent', null, 'false');
$this->element('Language', null, common_language());
$this->element('OutputEncoding', null, 'UTF-8');
diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php
index 87eb45a7d0..6658d279f2 100644
--- a/actions/passwordsettings.php
+++ b/actions/passwordsettings.php
@@ -97,7 +97,7 @@ class PasswordsettingsAction extends AccountSettingsAction
$this->elementStart('ul', 'form_data');
- // Users who logged in with OpenID won't have a pwd
+ // Users who logged in with OpenID will not have a pwd
if ($user->password) {
$this->elementStart('li');
$this->password('oldpassword', _('Old password'));
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php
index 9776c1fb44..dcff35f6ed 100644
--- a/actions/recoverpassword.php
+++ b/actions/recoverpassword.php
@@ -149,13 +149,13 @@ class RecoverpasswordAction extends Action
$this->elementStart('div', 'instructions');
if ($this->mode == 'recover') {
$this->element('p', null,
- _('If you\'ve forgotten or lost your' .
+ _('If you have forgotten or lost your' .
' password, you can get a new one sent to' .
' the email address you have stored' .
' in your account.'));
} else if ($this->mode == 'reset') {
$this->element('p', null,
- _('You\'ve been identified. Enter a' .
+ _('You have been identified. Enter a' .
' new password below. '));
}
$this->elementEnd('div');
@@ -185,10 +185,10 @@ class RecoverpasswordAction extends Action
'class' => 'form_settings',
'action' => common_local_url('recoverpassword')));
$this->elementStart('fieldset');
- $this->element('legend', null, _('Password recover'));
+ $this->element('legend', null, _('Password recovery'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
- $this->input('nicknameoremail', _('Nickname or email'),
+ $this->input('nicknameoremail', _('Nickname or email address'),
$this->trimmed('nicknameoremail'),
_('Your nickname on this server, ' .
'or your registered email address.'));
diff --git a/actions/register.php b/actions/register.php
index 57f8e7bdf0..c4f6760aa9 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -174,7 +174,7 @@ class RegisterAction extends Action
$bio = $this->trimmed('bio');
$location = $this->trimmed('location');
- // We don't trim these... whitespace is OK in a password!
+ // We do not trim these... whitespace is OK in a password!
$password = $this->arg('password');
$confirm = $this->arg('confirm');
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php
index aee2a5d8e7..74025cf807 100644
--- a/actions/remotesubscribe.php
+++ b/actions/remotesubscribe.php
@@ -151,7 +151,7 @@ class RemotesubscribeAction extends Action
$this->profile_url = $this->trimmed('profile_url');
if (!$this->profile_url) {
- $this->showForm(_('No such user'));
+ $this->showForm(_('No such user.'));
return;
}
diff --git a/actions/showgroup.php b/actions/showgroup.php
index a4af29391d..ae956befa3 100644
--- a/actions/showgroup.php
+++ b/actions/showgroup.php
@@ -418,7 +418,7 @@ class ShowgroupAction extends GroupDesignAction
// XXX: WORM cache this
$members = $this->group->getMembers();
$members_count = 0;
- /** $member->count() doesn't work. */
+ /** $member->count() does not work. */
while ($members->fetch()) {
$members_count++;
}
diff --git a/actions/showmessage.php b/actions/showmessage.php
index db757948ba..cf3a819c11 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -137,7 +137,7 @@ class ShowmessageAction extends MailboxAction
}
/**
- * Don't show local navigation
+ * Do not show local navigation
*
* @return void
*/
@@ -147,7 +147,7 @@ class ShowmessageAction extends MailboxAction
}
/**
- * Don't show page notice
+ * Do not show page notice
*
* @return void
*/
@@ -157,7 +157,7 @@ class ShowmessageAction extends MailboxAction
}
/**
- * Don't show aside
+ * Do not show aside
*
* @return void
*/
@@ -167,7 +167,7 @@ class ShowmessageAction extends MailboxAction
}
/**
- * Don't show any instructions
+ * Do not show any instructions
*
* @return string
*/
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 5d16fdad9e..688089f027 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -208,7 +208,7 @@ class ShownoticeAction extends OwnerDesignAction
}
/**
- * Don't show local navigation
+ * Do not show local navigation
*
* @return void
*/
@@ -234,7 +234,7 @@ class ShownoticeAction extends OwnerDesignAction
}
/**
- * Don't show page notice
+ * Do not show page notice
*
* @return void
*/
@@ -244,7 +244,7 @@ class ShownoticeAction extends OwnerDesignAction
}
/**
- * Don't show aside
+ * Do not show aside
*
* @return void
*/
diff --git a/actions/showstream.php b/actions/showstream.php
index 663638c18a..4952ebdb7e 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -253,7 +253,7 @@ class ShowstreamAction extends ProfileAction
}
}
-// We don't show the author for a profile, since we already know who it is!
+// We do not show the author for a profile, since we already know who it is!
class ProfileNoticeList extends NoticeList
{
diff --git a/actions/sup.php b/actions/sup.php
index 5daf0a1c1d..a199f247eb 100644
--- a/actions/sup.php
+++ b/actions/sup.php
@@ -61,7 +61,7 @@ class SupAction extends Action
$notice = new Notice();
# XXX: cache this. Depends on how big this protocol becomes;
- # Re-doing this query every 15 seconds isn't the end of the world.
+ # Re-doing this query every 15 seconds is not the end of the world.
$divider = common_sql_date(time() - $seconds);
diff --git a/actions/twitapisearchatom.php b/actions/twitapisearchatom.php
index 7d618c471f..511d7cdc66 100644
--- a/actions/twitapisearchatom.php
+++ b/actions/twitapisearchatom.php
@@ -250,7 +250,7 @@ class TwitapisearchatomAction extends ApiAction
}
// FIXME: this alternate link is not quite right because our
- // web-based notice search doesn't support a rpp (responses per
+ // web-based notice search does not support a rpp (responses per
// page) param yet
$this->element('link', array('type' => 'text/html',
diff --git a/actions/twitapitrends.php b/actions/twitapitrends.php
index 779405e6d6..2d17e77cc8 100644
--- a/actions/twitapitrends.php
+++ b/actions/twitapitrends.php
@@ -55,7 +55,7 @@ class TwitapitrendsAction extends ApiAction
*
* @param array $args Web and URL arguments
*
- * @return boolean false if user doesn't exist
+ * @return boolean false if user does not exist
*/
function prepare($args)
{
diff --git a/classes/Avatar.php b/classes/Avatar.php
index 64f105179c..cc7a6b6471 100644
--- a/classes/Avatar.php
+++ b/classes/Avatar.php
@@ -102,6 +102,6 @@ class Avatar extends Memcached_DataObject
static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
AVATAR_STREAM_SIZE => 'stream',
AVATAR_MINI_SIZE => 'mini');
- return theme_path('default-avatar-'.$sizenames[$size].'.png');
+ return Theme::path('default-avatar-'.$sizenames[$size].'.png');
}
}
diff --git a/classes/File_redirection.php b/classes/File_redirection.php
index 08a6e8d8be..c951c1ee77 100644
--- a/classes/File_redirection.php
+++ b/classes/File_redirection.php
@@ -53,7 +53,7 @@ class File_redirection extends Memcached_DataObject
'connect_timeout' => 10, // # seconds to wait
'max_redirs' => $redirs, // # max number of http redirections to follow
'follow_redirects' => true, // Follow redirects
- 'store_body' => false, // We won't need body content here.
+ 'store_body' => false, // We will not need body content here.
));
return $request;
}
@@ -81,12 +81,12 @@ class File_redirection extends Memcached_DataObject
}
try {
$request = self::_commonHttp($short_url, $redirs);
- // Don't include body in output
+ // Do not include body in output
$request->setMethod(HTTP_Request2::METHOD_HEAD);
$response = $request->send();
if (405 == $response->getStatus()) {
- // Server doesn't support HEAD method? Can this really happen?
+ // Server does not support HEAD method? Can this really happen?
// We'll try again as a GET and ignore the response data.
$request = self::_commonHttp($short_url, $redirs);
$response = $request->send();
@@ -178,7 +178,7 @@ class File_redirection extends Memcached_DataObject
case 'aim':
case 'jabber':
case 'xmpp':
- // don't touch anything
+ // do not touch anything
break;
default:
diff --git a/classes/Notice.php b/classes/Notice.php
index 9886875cb7..32a8b693c0 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -146,7 +146,7 @@ class Notice extends Memcached_DataObject
/* Add them to the database */
foreach(array_unique($hashtags) as $hashtag) {
- /* elide characters we don't want in the tag */
+ /* elide characters we do not want in the tag */
$this->saveTag($hashtag);
}
return true;
@@ -1105,7 +1105,7 @@ class Notice extends Memcached_DataObject
if (empty($recipient)) {
continue;
}
- // Don't save replies from blocked profile to local user
+ // Do not save replies from blocked profile to local user
$recipient_user = User::staticGet('id', $recipient->id);
if (!empty($recipient_user) && $recipient_user->hasBlocked($sender)) {
continue;
@@ -1131,7 +1131,7 @@ class Notice extends Memcached_DataObject
$tagged = Profile_tag::getTagged($sender->id, $tag);
foreach ($tagged as $t) {
if (!$replied[$t->id]) {
- // Don't save replies from blocked profile to local user
+ // Do not save replies from blocked profile to local user
$t_user = User::staticGet('id', $t->id);
if ($t_user && $t_user->hasBlocked($sender)) {
continue;
diff --git a/classes/Profile.php b/classes/Profile.php
index 7c1e9db332..a50f4951de 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -101,7 +101,7 @@ class Profile extends Memcached_DataObject
}
foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
- # We don't do a scaled one if original is our scaled size
+ # We do not do a scaled one if original is our scaled size
if (!($avatar->width == $size && $avatar->height == $size)) {
$scaled_filename = $imagefile->resize($size);
@@ -174,7 +174,7 @@ class Profile extends Memcached_DataObject
function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0, $since=null)
{
- // XXX: I'm not sure this is going to be any faster. It probably isn't.
+ // XXX: I'm not sure this is going to be any faster. It probably is not.
$ids = Notice::stream(array($this, '_streamDirect'),
array(),
'profile:notice_ids:' . $this->id,
diff --git a/classes/User.php b/classes/User.php
index b0d372be85..c529b82e0b 100644
--- a/classes/User.php
+++ b/classes/User.php
@@ -87,7 +87,7 @@ class User extends Memcached_DataObject
return (is_null($sub)) ? false : true;
}
- // 'update' won't write key columns, so we have to do it ourselves.
+ // 'update' will not write key columns, so we have to do it ourselves.
function updateKeys(&$orig)
{
@@ -384,7 +384,7 @@ class User extends Memcached_DataObject
return false;
}
- // Otherwise, cache doesn't have all faves;
+ // Otherwise, cache does not have all faves;
// fall through to the default
}
@@ -463,7 +463,7 @@ class User extends Memcached_DataObject
{
$cache = common_memcache();
if ($cache) {
- // Faves don't happen chronologically, so we need to blow
+ // Faves do not happen chronologically, so we need to blow
// ;last cache, too
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id));
$cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last'));
@@ -705,10 +705,12 @@ class User extends Memcached_DataObject
if (Event::handle('UserRightsCheck', array($this, $right, &$result))) {
switch ($right)
{
- case Right::deleteOthersNotice:
- $result = $this->hasRole('moderator');
+ case Right::DELETEOTHERSNOTICE:
+ $result = $this->hasRole(User_role::MODERATOR);
break;
- default:
+ case Right::CONFIGURESITE:
+ $result = $this->hasRole(User_role::ADMINISTRATOR);
+ default:
$result = false;
break;
}
diff --git a/classes/User_group.php b/classes/User_group.php
index 310ecff1ef..b92638f7aa 100644
--- a/classes/User_group.php
+++ b/classes/User_group.php
@@ -34,7 +34,7 @@ class User_group extends Memcached_DataObject
static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
AVATAR_STREAM_SIZE => 'stream',
AVATAR_MINI_SIZE => 'mini');
- return theme_path('default-avatar-'.$sizenames[$size].'.png');
+ return Theme::path('default-avatar-'.$sizenames[$size].'.png');
}
function homeUrl()
diff --git a/classes/User_role.php b/classes/User_role.php
index 85ecfb422d..fc3806897f 100644
--- a/classes/User_role.php
+++ b/classes/User_role.php
@@ -45,4 +45,7 @@ class User_role extends Memcached_DataObject
{
return Memcached_DataObject::pkeyGet('User_role', $kv);
}
+
+ const MODERATOR = 'moderator';
+ const ADMINISTRATOR = 'administrator';
}
diff --git a/lib/action.php b/lib/action.php
index 1b2f737521..80f398fbd7 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -168,7 +168,7 @@ class Action extends HTMLOutputter // lawsuit
{
if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/favicon.ico')) {
$this->element('link', array('rel' => 'shortcut icon',
- 'href' => theme_path('favicon.ico')));
+ 'href' => Theme::path('favicon.ico')));
} else {
$this->element('link', array('rel' => 'shortcut icon',
'href' => common_path('favicon.ico')));
@@ -177,7 +177,7 @@ class Action extends HTMLOutputter // lawsuit
if (common_config('site', 'mobile')) {
if (is_readable(INSTALLDIR . '/theme/' . common_config('site', 'theme') . '/apple-touch-icon.png')) {
$this->element('link', array('rel' => 'apple-touch-icon',
- 'href' => theme_path('apple-touch-icon.png')));
+ 'href' => Theme::path('apple-touch-icon.png')));
} else {
$this->element('link', array('rel' => 'apple-touch-icon',
'href' => common_path('apple-touch-icon.png')));
@@ -210,16 +210,16 @@ class Action extends HTMLOutputter // lawsuit
if (Event::handle('StartShowUAStyles', array($this))) {
$this->comment('[if IE]>comment('[if lte IE '.$ver.']>comment('[if IE]>elementStart('a', array('class' => 'url home bookmark',
'href' => common_local_url('public')));
- if (common_config('site', 'logo') || file_exists(theme_file('logo.png'))) {
+ if (common_config('site', 'logo') || file_exists(Theme::file('logo.png'))) {
$this->element('img', array('class' => 'logo photo',
- 'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : theme_path('logo.png'),
+ 'src' => (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'),
'alt' => common_config('site', 'name')));
}
$this->element('span', array('class' => 'fn org'), common_config('site', 'name'));
@@ -1101,4 +1101,22 @@ class Action extends HTMLOutputter // lawsuit
{
return Design::siteDesign();
}
+
+ /**
+ * Check the session token.
+ *
+ * Checks that the current form has the correct session token,
+ * and throw an exception if it does not.
+ *
+ * @return void
+ */
+
+ function checkSessionToken()
+ {
+ // CSRF protection
+ $token = $this->trimmed('token');
+ if (empty($token) || $token != common_session_token()) {
+ $this->clientError(_('There was a problem with your session token.'));
+ }
+ }
}
diff --git a/lib/api.php b/lib/api.php
index a1236ab7ec..fb4c4289b4 100644
--- a/lib/api.php
+++ b/lib/api.php
@@ -66,7 +66,7 @@ class ApiAction extends Action
*
* @param array $args Web and URL arguments
*
- * @return boolean false if user doesn't exist
+ * @return boolean false if user does not exist
*/
function prepare($args)
@@ -138,7 +138,7 @@ class ApiAction extends Action
$design = null;
$user = $profile->getUser();
- // Note: some profiles don't have an associated user
+ // Note: some profiles do not have an associated user
if (!empty($user)) {
$design = $user->getDesign();
@@ -203,7 +203,7 @@ class ApiAction extends Action
if ($get_notice) {
$notice = $profile->getCurrentNotice();
if ($notice) {
- # don't get user!
+ # do not get user!
$twitter_user['status'] = $this->twitterStatusArray($notice, false);
}
}
@@ -263,7 +263,7 @@ class ApiAction extends Action
}
if ($include_user) {
- # Don't get notice (recursive!)
+ # Do not get notice (recursive!)
$twitter_user = $this->twitterUserArray($profile, false);
$twitter_status['user'] = $twitter_user;
}
@@ -1074,7 +1074,7 @@ class ApiAction extends Action
function initTwitterAtom()
{
$this->startXML();
- // FIXME: don't hardcode the language here!
+ // FIXME: do not hardcode the language here!
$this->elementStart('feed', array('xmlns' => 'http://www.w3.org/2005/Atom',
'xml:lang' => 'en-US',
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0'));
@@ -1116,7 +1116,7 @@ class ApiAction extends Action
return User::staticGet('nickname', $nickname);
} else if ($this->arg('user_id')) {
// This is to ensure that a non-numeric user_id still
- // overrides screen_name even if it doesn't get used
+ // overrides screen_name even if it does not get used
if (is_numeric($this->arg('user_id'))) {
return User::staticGet('id', $this->arg('user_id'));
}
@@ -1146,7 +1146,7 @@ class ApiAction extends Action
return User_group::staticGet('nickname', $nickname);
} else if ($this->arg('group_id')) {
// This is to ensure that a non-numeric user_id still
- // overrides screen_name even if it doesn't get used
+ // overrides screen_name even if it does not get used
if (is_numeric($this->arg('group_id'))) {
return User_group::staticGet('id', $this->arg('group_id'));
}
diff --git a/lib/apiauth.php b/lib/apiauth.php
index 2f2e44a264..b8189f15dd 100644
--- a/lib/apiauth.php
+++ b/lib/apiauth.php
@@ -87,7 +87,7 @@ class ApiAuthAction extends ApiAction
}
/**
- * Check for a user specified via HTTP basic auth. If there isn't
+ * Check for a user specified via HTTP basic auth. If there is not
* one, try to get one by outputting the basic auth header.
*
* @return boolean true or false
diff --git a/lib/common.php b/lib/common.php
index 68bdbf2293..6aac468075 100644
--- a/lib/common.php
+++ b/lib/common.php
@@ -227,7 +227,6 @@ require_once 'markdown.php';
require_once INSTALLDIR.'/lib/util.php';
require_once INSTALLDIR.'/lib/action.php';
-require_once INSTALLDIR.'/lib/theme.php';
require_once INSTALLDIR.'/lib/mail.php';
require_once INSTALLDIR.'/lib/subs.php';
require_once INSTALLDIR.'/lib/Shorturl_api.php';
diff --git a/lib/dberroraction.php b/lib/dberroraction.php
index 2cb66a022d..893797b70e 100644
--- a/lib/dberroraction.php
+++ b/lib/dberroraction.php
@@ -39,7 +39,7 @@ require_once INSTALLDIR.'/lib/servererroraction.php';
*
* This only occurs if there's been a DB_DataObject_Error that's
* reported through PEAR, so we try to avoid doing anything that connects
- * to the DB, so we don't trigger it again.
+ * to the DB, so we do not trigger it again.
*
* @category Action
* @package StatusNet
@@ -62,12 +62,12 @@ class DBErrorAction extends ServerErrorAction
function getLanguage()
{
- // Don't try to figure out user's language; just show the page
+ // Do not try to figure out user's language; just show the page
return common_config('site', 'language');
}
function showPrimaryNav()
{
- // don't show primary nav
+ // do not show primary nav
}
}
diff --git a/lib/error.php b/lib/error.php
index 3162cfe656..5ed5dec1bd 100644
--- a/lib/error.php
+++ b/lib/error.php
@@ -104,11 +104,11 @@ class ErrorAction extends Action
{
parent::showPage();
- // We don't want to have any more output after this
+ // We do not want to have any more output after this
exit();
}
- // Overload a bunch of stuff so the page isn't too bloated
+ // Overload a bunch of stuff so the page is not too bloated
function showBody()
{
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index ce83295fb3..73bd9ce815 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -76,7 +76,7 @@ class HTMLOutputter extends XMLOutputter
/**
* Start an HTML document
*
- * If $type isn't specified, will attempt to do content negotiation.
+ * If $type is not specified, will attempt to do content negotiation.
*
* Attempts to do content negotiation for language, also.
*
@@ -375,8 +375,8 @@ class HTMLOutputter extends XMLOutputter
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
- if(file_exists(theme_file($src,$theme))){
- $src = theme_path($src, $theme) . '?version=' . STATUSNET_VERSION;
+ if(file_exists(Theme::file($src,$theme))){
+ $src = Theme::path($src, $theme) . '?version=' . STATUSNET_VERSION;
}else{
$src = common_path($src);
}
diff --git a/lib/imagefile.php b/lib/imagefile.php
index cf1668f203..edc7218d03 100644
--- a/lib/imagefile.php
+++ b/lib/imagefile.php
@@ -119,7 +119,7 @@ class ImageFile
return;
}
- // Don't crop/scale if it isn't necessary
+ // Do not crop/scale if it is not necessary
if ($size === $this->width
&& $size === $this->height
&& $x === 0
diff --git a/lib/jabber.php b/lib/jabber.php
index 73f2ec6605..d666fcbb38 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -437,7 +437,7 @@ function jabber_public_notice($notice)
$public = common_config('xmpp', 'public');
- // FIXME PRIV don't send out private messages here
+ // FIXME PRIV do not send out private messages here
// XXX: should we send out non-local messages if public,localonly
// = false? I think not
diff --git a/lib/mail.php b/lib/mail.php
index 5218059e9d..79630b721c 100644
--- a/lib/mail.php
+++ b/lib/mail.php
@@ -467,7 +467,7 @@ function mail_notify_nudge($from, $to)
"these days and is inviting you to post some news.\n\n".
"So let's hear from you :)\n\n".
"%3\$s\n\n".
- "Don't reply to this email; it won't get to them.\n\n".
+ "Do not reply to this email. It will not get to them.\n\n".
"With kind regards,\n".
"%4\$s\n"),
$from_profile->getBestName(),
@@ -516,7 +516,7 @@ function mail_notify_message($message, $from=null, $to=null)
"------------------------------------------------------\n\n".
"You can reply to their message here:\n\n".
"%4\$s\n\n".
- "Don't reply to this email; it won't get to them.\n\n".
+ "Do not reply to this email. It will not get to them.\n\n".
"With kind regards,\n".
"%5\$s\n"),
$from_profile->getBestName(),
@@ -532,7 +532,7 @@ function mail_notify_message($message, $from=null, $to=null)
/**
* notify a user that one of their notices has been chosen as a 'fave'
*
- * Doesn't check that the user has an email address nor if they
+ * Does not check that the user has an email address nor if they
* want to receive notification of faves. Maybe this happens higher
* up the stack...?
*
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 8b3015cc3e..4e5623ded6 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -347,7 +347,7 @@ class NoticeListItem extends Widget
* show the link to the main page for the notice
*
* Displays a link to the page for a notice, with "relative" time. Tries to
- * get remote notice URLs correct, but doesn't always succeed.
+ * get remote notice URLs correct, but does not always succeed.
*
* @return void
*/
@@ -483,7 +483,7 @@ class NoticeListItem extends Widget
* show a link to reply to the current notice
*
* Should either do the reply in the current notice form (if available), or
- * link out to the notice-posting form. A little flakey, doesn't always work.
+ * link out to the notice-posting form. A little flakey, does not always work.
*
* @return void
*/
@@ -513,7 +513,7 @@ class NoticeListItem extends Widget
$user = common_current_user();
if (!empty($user) &&
- ($this->notice->profile_id == $user->id || $user->hasRight(Right::deleteOthersNotice))) {
+ ($this->notice->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) {
$deleteurl = common_local_url('deletenotice',
array('notice' => $this->notice->id));
diff --git a/lib/noticesection.php b/lib/noticesection.php
index b223932efe..24465f8baf 100644
--- a/lib/noticesection.php
+++ b/lib/noticesection.php
@@ -114,7 +114,7 @@ class NoticeSection extends Section
$att_class = 'attachments';
}
- $clip = theme_path('images/icons/clip.png', 'base');
+ $clip = Theme::path('images/icons/clip.png', 'base');
$this->out->elementStart('a', array('class' => $att_class, 'style' => "font-style: italic;", 'href' => $href, 'title' => "# of attachments: $count"));
$this->out->raw(" ($count ");
$this->out->element('img', array('style' => 'display: inline', 'align' => 'top', 'width' => 20, 'height' => 20, 'src' => $clip, 'alt' => 'alt'));
diff --git a/lib/oauthstore.php b/lib/oauthstore.php
index d617a7df7e..a4ea5ad4d0 100644
--- a/lib/oauthstore.php
+++ b/lib/oauthstore.php
@@ -351,7 +351,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore
$author = User::staticGet('uri', $author_uri);
}
if (!$author) {
- throw new Exception('No such user');
+ throw new Exception('No such user.');
}
common_log(LOG_DEBUG, print_r($author, true), __FILE__);
@@ -407,7 +407,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore
$user = User::staticGet('uri', $uri);
}
if (!$user) {
- throw new Exception('No such user');
+ throw new Exception('No such user.');
}
return $user;
}
diff --git a/lib/queuehandler.php b/lib/queuehandler.php
index cd43b1e09a..7c07ca4f99 100644
--- a/lib/queuehandler.php
+++ b/lib/queuehandler.php
@@ -96,8 +96,8 @@ class QueueHandler extends Daemon
* Initialization, run when the queue handler starts.
* If this function indicates failure, the handler run will be aborted.
*
- * @fixme run() will abort if this doesn't return true,
- * but some subclasses don't bother.
+ * @fixme run() will abort if this does not return true,
+ * but some subclasses do not bother.
* @return boolean true on success, false on failure
*/
function start()
@@ -108,8 +108,8 @@ class QueueHandler extends Daemon
* Cleanup, run when the queue handler ends.
* If this function indicates failure, a warning will be logged.
*
- * @fixme run() will throw warnings if this doesn't return true,
- * but many subclasses don't bother.
+ * @fixme run() will throw warnings if this does not return true,
+ * but many subclasses do not bother.
* @return boolean true on success, false on failure
*/
function finish()
@@ -137,7 +137,7 @@ class QueueHandler extends Daemon
* method, which passes control back to our handle_notice() method for
* each notice that comes in on the queue.
*
- * Most of the time this won't need to be overridden in a subclass.
+ * Most of the time this will not need to be overridden in a subclass.
*
* @return boolean true on success, false on failure
*/
@@ -173,7 +173,7 @@ class QueueHandler extends Daemon
* Called by QueueHandler after each handled item or empty polling cycle.
* This is a good time to e.g. service your XMPP connection.
*
- * Doesn't need to be overridden if there's no maintenance to do.
+ * Does not need to be overridden if there's no maintenance to do.
*
* @param int $timeout seconds to sleep if there's nothing to do
*/
diff --git a/lib/right.php b/lib/right.php
index 4e0096d46a..4fc981af04 100644
--- a/lib/right.php
+++ b/lib/right.php
@@ -45,6 +45,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
class Right
{
- const deleteOthersNotice = 'deleteothersnotice';
+ const DELETEOTHERSNOTICE = 'deleteothersnotice';
+ const CONFIGURESITE = 'configuresite';
}
diff --git a/lib/rssaction.php b/lib/rssaction.php
index faf6bec7de..0e84a65e92 100644
--- a/lib/rssaction.php
+++ b/lib/rssaction.php
@@ -386,7 +386,7 @@ class Rss10Action extends Action
return null;
}
- // FIXME: doesn't handle modified profiles, avatars, deleted notices
+ // FIXME: does not handle modified profiles, avatars, deleted notices
return strtotime($this->notices[0]->created);
}
diff --git a/lib/search_engines.php b/lib/search_engines.php
index 69f6ff468e..82713235c9 100644
--- a/lib/search_engines.php
+++ b/lib/search_engines.php
@@ -119,7 +119,7 @@ class MySQLSearch extends SearchEngine
return true;
} else if ('identica_notices' === $this->table) {
- // Don't show imported notices
+ // Do not show imported notices
$this->target->whereAdd('notice.is_local != ' . Notice::GATEWAY);
if (strtolower($q) != $q) {
diff --git a/lib/subs.php b/lib/subs.php
index 68c89c8421..934380b76e 100644
--- a/lib/subs.php
+++ b/lib/subs.php
@@ -45,7 +45,7 @@ function subs_subscribe_user($user, $other_nickname)
function subs_subscribe_to($user, $other)
{
if ($user->isSubscribed($other)) {
- return _('Already subscribed!.');
+ return _('Already subscribed!');
}
if ($other->hasBlocked($user)) {
diff --git a/lib/theme.php b/lib/theme.php
index 08e3e85383..c658058ffc 100644
--- a/lib/theme.php
+++ b/lib/theme.php
@@ -23,7 +23,7 @@
* @package StatusNet
* @author Evan Prodromou
* @author Sarven Capadisli
- * @copyright 2008 StatusNet, Inc.
+ * @copyright 2008-2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
@@ -33,62 +33,146 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
}
/**
- * Gets the full path of a file in a theme dir based on its relative name
+ * Class for querying and manipulating a theme
*
- * @param string $relative relative path within the theme directory
- * @param string $theme name of the theme; defaults to current theme
+ * Themes are directories with some expected sub-directories and files
+ * in them. They're found in either local/theme (for locally-installed themes)
+ * or theme/ subdir of installation dir.
*
- * @return string File path to the theme file
+ * This used to be a couple of functions, but for various reasons it's nice
+ * to have a class instead.
+ *
+ * @category Output
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://status.net/
*/
-function theme_file($relative, $theme=null)
+class Theme
{
- if (empty($theme)) {
- $theme = common_config('site', 'theme');
+ var $dir = null;
+ var $path = null;
+
+ /**
+ * Constructor
+ *
+ * Determines the proper directory and path for this theme.
+ *
+ * @param string $name Name of the theme; defaults to config value
+ */
+
+ function __construct($name=null)
+ {
+ if (empty($name)) {
+ $name = common_config('site', 'theme');
+ }
+
+ // Check to see if it's in the local dir
+
+ $localroot = INSTALLDIR.'/local/theme';
+
+ $fulldir = $localroot.'/'.$name;
+
+ if (file_exists($fulldir) && is_dir($fulldir)) {
+ $this->dir = $fulldir;
+ $this->path = common_path('local/theme/'.$name.'/');
+ return;
+ }
+
+ // Check to see if it's in the distribution dir
+
+ $instroot = common_config('theme', 'dir');
+
+ if (empty($instroot)) {
+ $instroot = INSTALLDIR.'/theme';
+ }
+
+ $fulldir = $instroot.'/'.$name;
+
+ if (file_exists($fulldir) && is_dir($fulldir)) {
+
+ $this->dir = $fulldir;
+
+ $path = common_config('theme', 'path');
+
+ if (empty($path)) {
+ $path = common_config('site', 'path') . '/theme/';
+ }
+
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
+
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
+
+ $server = common_config('theme', 'server');
+
+ if (empty($server)) {
+ $server = common_config('site', 'server');
+ }
+
+ // XXX: protocol
+
+ $this->path = 'http://'.$server.$path.$name;
+ }
}
- $dir = common_config('theme', 'dir');
- if (empty($dir)) {
- $dir = INSTALLDIR.'/theme';
+
+ /**
+ * Gets the full local filename of a file in this theme.
+ *
+ * @param string $relative relative name, like 'logo.png'
+ *
+ * @return string full pathname, like /var/www/mublog/theme/default/logo.png
+ */
+
+ function getFile($relative)
+ {
+ return $this->dir.'/'.$relative;
+ }
+
+ /**
+ * Gets the full HTTP url of a file in this theme
+ *
+ * @param string $relative relative name, like 'logo.png'
+ *
+ * @return string full URL, like 'http://example.com/theme/default/logo.png'
+ */
+
+ function getPath($relative)
+ {
+ return $this->path.'/'.$relative;
+ }
+
+ /**
+ * Gets the full path of a file in a theme dir based on its relative name
+ *
+ * @param string $relative relative path within the theme directory
+ * @param string $name name of the theme; defaults to current theme
+ *
+ * @return string File path to the theme file
+ */
+
+ static function file($relative, $name=null)
+ {
+ $theme = new Theme($name);
+ return $theme->getFile($relative);
+ }
+
+ /**
+ * Gets the full URL of a file in a theme dir based on its relative name
+ *
+ * @param string $relative relative path within the theme directory
+ * @param string $name name of the theme; defaults to current theme
+ *
+ * @return string URL of the file
+ */
+
+ static function path($relative, $name=null)
+ {
+ $theme = new Theme($name);
+ return $theme->getPath($relative);
}
- return $dir.'/'.$theme.'/'.$relative;
-}
-
-/**
- * Gets the full URL of a file in a theme dir based on its relative name
- *
- * @param string $relative relative path within the theme directory
- * @param string $theme name of the theme; defaults to current theme
- *
- * @return string URL of the file
- */
-
-function theme_path($relative, $theme=null)
-{
- if (empty($theme)) {
- $theme = common_config('site', 'theme');
- }
-
- $path = common_config('theme', 'path');
-
- if (empty($path)) {
- $path = common_config('site', 'path') . '/theme/';
- }
-
- if ($path[strlen($path)-1] != '/') {
- $path .= '/';
- }
-
- if ($path[0] != '/') {
- $path = '/'.$path;
- }
-
- $server = common_config('theme', 'server');
-
- if (empty($server)) {
- $server = common_config('site', 'server');
- }
-
- // XXX: protocol
-
- return 'http://'.$server.$path.$theme.'/'.$relative;
}
diff --git a/lib/util.php b/lib/util.php
index a4865c46c1..b4f5af1af2 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -62,7 +62,7 @@ function common_init_language()
$locale_set = common_init_locale($language);
setlocale(LC_CTYPE, 'C');
- // So we don't have to make people install the gettext locales
+ // So we do not have to make people install the gettext locales
$path = common_config('site','locale_path');
bindtextdomain("statusnet", $path);
bind_textdomain_codeset("statusnet", "UTF-8");
@@ -139,7 +139,7 @@ function common_check_user($nickname, $password)
}
}
}else{
- //no handler indicated the credentials were valid, and we know their not valid because the user isn't in the database
+ //no handler indicated the credentials were valid, and we know their not valid because the user is not in the database
return false;
}
} else {
@@ -396,7 +396,7 @@ function common_current_user()
}
// Logins that are 'remembered' aren't 'real' -- they're subject to
-// cookie-stealing. So, we don't let them do certain things. New reg,
+// cookie-stealing. So, we do not let them do certain things. New reg,
// OpenID, and password logins _are_ real.
function common_real_login($real=true)
@@ -1147,7 +1147,7 @@ function common_accept_to_prefs($accept, $def = '*/*')
$parts = explode(',', $accept);
foreach($parts as $part) {
- // FIXME: doesn't deal with params like 'text/html; level=1'
+ // FIXME: does not deal with params like 'text/html; level=1'
@list($value, $qpart) = explode(';', trim($part));
$match = array();
if(!isset($qpart)) {
@@ -1346,7 +1346,7 @@ function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
}
// FIXME: show error page if we're on the Web
- /* Don't execute PHP internal error handler */
+ /* Do not execute PHP internal error handler */
return true;
}
@@ -1448,7 +1448,7 @@ function common_shorten_url($long_url)
}
global $_shorteners;
if (!isset($_shorteners[$svc])) {
- //the user selected service doesn't exist, so default to ur1.ca
+ //the user selected service does not exist, so default to ur1.ca
$svc = 'ur1.ca';
}
if (!isset($_shorteners[$svc])) {
diff --git a/lib/xmloutputter.php b/lib/xmloutputter.php
index 5f06e491df..9d862b2d02 100644
--- a/lib/xmloutputter.php
+++ b/lib/xmloutputter.php
@@ -112,7 +112,7 @@ class XMLOutputter
*
* Utility for outputting an XML element. A convenient wrapper
* for a bunch of longer XMLWriter calls. This is best for
- * when an element doesn't have any sub-elements; if that's the
+ * when an element does not have any sub-elements; if that's the
* case, use elementStart() and elementEnd() instead.
*
* The $content element will be escaped for XML. If you need
diff --git a/lib/xmppqueuehandler.php b/lib/xmppqueuehandler.php
index f28fc9088c..7caa078ae3 100644
--- a/lib/xmppqueuehandler.php
+++ b/lib/xmppqueuehandler.php
@@ -37,7 +37,7 @@ class XmppQueueHandler extends QueueHandler
function start()
{
- # Low priority; we don't want to receive messages
+ # Low priority; we do not want to receive messages
$this->log(LOG_INFO, "INITIALIZE");
$this->conn = jabber_connect($this->_id.$this->transport());
diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo
index 50651eb59e..2821c4d839 100644
Binary files a/locale/bg/LC_MESSAGES/statusnet.mo and b/locale/bg/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po
index 7a2e0d9276..f6b0cb3f2d 100644
--- a/locale/bg/LC_MESSAGES/statusnet.po
+++ b/locale/bg/LC_MESSAGES/statusnet.po
@@ -5,47 +5,1535 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:03+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:57:47+0000\n"
"Language-Team: Bulgarian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
-#, php-format
-msgid " Search Stream for \"%s\""
-msgstr " Търсене на \"%s\" в потока"
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "Няма такъв етикет."
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr "Няма такъв потребител"
+
+#: actions/all.php:84
+#, php-format
+msgid "%s and friends, page %d"
+msgstr "%s и приятели, страница %d"
+
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
+#, php-format
+msgid "%s and friends"
+msgstr "%s и приятели"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/all.php:127
+#, php-format
msgid ""
-" except this private data: password, email address, IM address, phone number."
-msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон."
+"This is the timeline for %s and friends but no one has posted anything yet."
+msgstr ""
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr " от "
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:132
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s и приятели"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "Бележки от %1$s и приятели в %2$s."
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr "Не е открит методът в API."
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr "Този метод изисква заявка POST."
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr "Потребителят няма профил."
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr ""
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr "Липсва текст на съобщението"
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Твърде дълго. Може да е най-много 140 знака."
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr "Получателят не е открит"
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr ""
+"Не може да изпращате преки съобщения до хора, които не са в списъка ви с "
+"приятели."
+
+#: actions/apidirectmessage.php:89
+#, fuzzy, php-format
+msgid "Direct messages from %s"
+msgstr "Преки съобщения до %s"
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "Всички преки съобщения, изпратени от %s"
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr "Преки съобщения до %s"
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "Всички преки съобщения, изпратени до %s"
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr "Не е открита бележка с такъв идентификатор."
+
+#: actions/apifavoritecreate.php:119
+#, fuzzy
+msgid "This status is already a favorite!"
+msgstr "Тази бележка вече е отбелязана като любима!"
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr "Грешка при отбелязване като любима."
+
+#: actions/apifavoritedestroy.php:122
+#, fuzzy
+msgid "That status is not a favorite!"
+msgstr "Тази бележка не е отбелязана като любима!"
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr "Грешка при изтриване на любима бележка."
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr "Грешка при проследяване — потребителят не е намерен."
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви."
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "Грешка при проследяване — потребителят не е намерен."
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr "Трябва да се дадат два идентификатора или имена на потребители."
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Грешка при изтегляне на общия поток"
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "Не са открити бележки."
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+msgid "Could not create group."
+msgstr "Грешка при създаване на групата."
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "Грешка при отбелязване като любима."
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+#, fuzzy
+msgid "Could not set group membership."
+msgstr "Грешка при създаване на нов абонамент."
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
+"между тях."
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Опитайте друг псевдоним, този вече е зает."
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr "Неправилен псевдоним."
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr "Адресът на личната страница не е правилен URL."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "Пълното име е твърде дълго (макс. 255 знака)"
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "Автобиографията е твърде дълга (до 140 символа)."
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "Неправилен етикет: \"%s\""
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Опитайте друг псевдоним, този вече е зает."
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "Вече членувате в тази група."
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "Грешка при проследяване — потребителят не е намерен."
+
+#: actions/apigroupleave.php:114
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "Не членувате в тази група."
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "Грешка при проследяване — потребителят не е намерен."
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr "Групи на %s"
+
+#: actions/apigrouplistall.php:94
+#, fuzzy, php-format
+msgid "groups on %s"
+msgstr "Търсене на групи в сайта"
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "Групи на %s"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "Групи, в които участва %s"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr "Този метод изисква заявка POST или DELETE."
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr "Не може да изтривате бележки на друг потребител."
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Аватарът е обновен."
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr "Не е открита бележка с такъв идентификатор."
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, fuzzy, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака."
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr "Не е открито."
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+#, fuzzy
+msgid "Unsupported format."
+msgstr "Форматът на файла с изображението не се поддържа."
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr "%s / Отбелязани като любими от %s"
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr "%s бележки отбелязани като любими от %s / %s."
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, php-format
+msgid "%s timeline"
+msgstr "Поток на %s"
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr "Бележки от %1$s в %2$s."
+
+#: actions/apitimelinementions.php:116
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
msgstr "%1$s / Реплики на %2$s"
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr "%1$s реплики на съобщения от %2$s / %3$s."
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "Общ поток на %s"
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr ""
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "Бележки с етикет %s"
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Бележки от %1$s в %2$s."
+
+#: actions/apiusershow.php:96
+msgid "Not found."
+msgstr "Не е открито."
+
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "Няма такъв документ."
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr "Няма псевдоним."
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr "Няма размер."
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr "Неправилен размер."
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr "Аватар"
+
+#: actions/avatarsettings.php:78
+#, fuzzy, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr "Можете да качите личен аватар тук."
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr "Потребител без съответстващ профил"
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+msgid "Avatar settings"
+msgstr "Настройки за аватар"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr "Оригинал"
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr "Преглед"
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+msgid "Delete"
+msgstr "Изтриване"
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr "Качване"
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr "Изрязване"
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr "Неочаквано изпращане на форма."
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr "Изберете квадратна област от изображението за аватар"
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr ""
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr "Аватарът е обновен."
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr "Неуспешно обновяване на аватара."
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Аватарът е обновен."
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+msgid "No nickname"
+msgstr "Няма псевдоним."
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+msgid "No such group"
+msgstr "Няма такава група."
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "Потребителски профил"
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s и приятели, страница %d"
+
+#: actions/blockedfromgroup.php:108
+#, fuzzy
+msgid "A list of the users blocked from joining this group."
+msgstr "Списък с потребителите в тази група."
+
+#: actions/blockedfromgroup.php:281
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "Разблокиране на този потребител"
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr "Разблокиране"
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+msgid "Unblock this user"
+msgstr "Разблокиране на този потребител"
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "Не сте влезли в системата."
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr "Не е указан профил."
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr "Не е открит профил с такъв идентификатор."
+
+#: actions/block.php:111 actions/block.php:134
+msgid "Block user"
+msgstr "Блокиране на потребителя"
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr "Не"
+
+#: actions/block.php:149
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "Списък с потребителите в тази група."
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr "Да"
+
+#: actions/block.php:150
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "Списък с потребителите в тази група."
+
+#: actions/block.php:165
+msgid "You have already blocked this user."
+msgstr "Вече сте блокирали този потребител."
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr "Грешка при записване данните за блокирането."
+
+#: actions/bookmarklet.php:50
+#, fuzzy
+msgid "Post to "
+msgstr "Снимка"
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr "Няма код за потвърждение."
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Кодът за потвърждение не е открит."
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr "Този код за потвърждение не е за вас!"
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr "Неразпознат вид адрес %s"
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr "Този адрес е вече потвърден."
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "Грешка при обновяване на потребителя."
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "Грешка при изтриване потвърждението по е-поща."
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Потвърждаване на адреса"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "Адресът \"%s\" е потвърден за сметката ви."
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Код за потвърждение"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr "Бележки"
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr "Няма такава бележка."
+
+#: actions/deletenotice.php:71
+msgid "Can't delete this notice."
+msgstr "Грешка при изтриване на бележката."
+
+#: actions/deletenotice.php:103
+#, fuzzy
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо."
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr "Изтриване на бележката"
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr "Наистина ли искате да изтриете тази бележка?"
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "Грешка при изтриване на бележката."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+msgid "Delete this notice"
+msgstr "Изтриване на бележката"
+
+#: actions/deletenotice.php:157
+#, fuzzy
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr "Тази бележка не е отбелязана като любима!"
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr "Добавяне към любимите"
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr "Няма такъв документ."
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr ""
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr "За да създавате група, трябва да сте влезли."
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr "За да редактирате групата, трябва да сте й администратор."
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr ""
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "Автобиографията е твърде дълга (до 140 символа)."
+
+#: actions/editgroup.php:253
+msgid "Could not update group."
+msgstr "Грешка при обновяване на групата."
+
+#: actions/editgroup.php:269
+msgid "Options saved."
+msgstr "Настройките са запазени."
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr "Настройки на е-поща"
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "Управление на пощата, идваща от %%site.name%%."
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Адрес"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr "Текущ потвърден адрес на е-поща."
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr "Премахване"
+
+#: actions/emailsettings.php:113
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за "
+"спам) за съобщение с указания."
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Отказ"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr "Адрес на е-поща"
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr "Адрес на е-поща, като \"UserName@example.org\""
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Добавяне"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr "Входяща поща"
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr "Изпратете писмо до този адрес за публикуване като бележка."
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната."
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr "Ново"
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Настройки"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr "Изпращане на уведомления за нови абонаменти по пощата."
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr "Изпращане на писмо при отбелязване на моя бележка като любима."
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr "Изпращане на писмо при ново лично съобщение."
+
+#: actions/emailsettings.php:174
+#, fuzzy
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr "Изпращане на писмо при ново лично съобщение."
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr ""
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr "Искам да изпращам бележки по пощата."
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr "Публикуване на MicroID за адреса на е-пощата."
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr "Запазване"
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Настройките са запазени."
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr "Не е въведена е-поща."
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr "Грешка при нормализиране адреса на е-пощата"
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr "Това не е правилен адрес на е-поща."
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr "Това и сега е адресът на е-пощата ви."
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr "Тази е-поща вече се използва от друг потребител."
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "Не може да се вмъкне код за потвърждение."
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. "
+"Проверете кутията (или папката за спам) за кода и указанията за използването "
+"му."
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr "Няма потвърждения, очакващи да бъдат отказани."
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr "Грешен IM адрес."
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Потвърждаването е прекъснато."
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr "Това не е вашият адрес на е-поща."
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr "Адресът е премахнат."
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr "Няма входящ адрес на е-поща."
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr "Грешка при обновяване записа на потребител."
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr "Входящият адрес на е-поща е премахнат."
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr "Добавен е нов входящ адрес на е-поща."
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "Популярни бележки"
+
+#: actions/favorited.php:67
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "Популярни бележки, страница %d"
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr "Най-популярните бележки в момента в сайта."
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr "Любими бележки на %s"
+
+#: actions/favoritesrss.php:115
+#, fuzzy, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Бележки от %1$s в %2$s."
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr "Тази бележка вече е отбелязана като любима!"
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+#, fuzzy
+msgid "Disfavor favorite"
+msgstr "Нелюбимо"
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "Избрани потребители"
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr "Избрани потребители, страница %d"
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr ""
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "Нова бележка"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "Нова бележка"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "Неочакван отговор."
+
+#: actions/finishremotesubscribe.php:80
+#, fuzzy
+msgid "User being listened to does not exist."
+msgstr "Потребителят, когото проследявате, не съществува. "
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr "Можете да ползвате локален абонамент!"
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr "Потребителят е забранил да се абонирате за него."
+
+#: actions/finishremotesubscribe.php:106
+#, fuzzy
+msgid "You are not authorized."
+msgstr "Забранено."
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп."
+
+#: actions/finishremotesubscribe.php:114
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "Непозната версия на протокола OMB."
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr "Грешка при обновяване на отдалечен профил"
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+msgid "No such group."
+msgstr "Няма такава група"
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "Няма такава бележка."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Няма такава бележка."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+#, fuzzy
+msgid "No group specified."
+msgstr "Не е указан профил."
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+#, fuzzy
+msgid "User is already blocked from group."
+msgstr "Потребителят ви е блокирал."
+
+#: actions/groupblock.php:100
+#, fuzzy
+msgid "User is not a member of group."
+msgstr "Не членувате в тази група."
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+#, fuzzy
+msgid "Block user from group"
+msgstr "Блокиране на потребителя"
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr "Липсва ID"
+
+#: actions/groupdesignsettings.php:68
+#, fuzzy
+msgid "You must be logged in to edit a group."
+msgstr "За да създавате група, трябва да сте влезли."
+
+#: actions/groupdesignsettings.php:141
+#, fuzzy
+msgid "Group design"
+msgstr "Групи"
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Грешка при обновяване на потребителя."
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#, fuzzy
+msgid "Unable to save your design settings!"
+msgstr "Грешка при записване настройките за Twitter"
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Настройките са запазени."
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr "Лого на групата"
+
+#: actions/grouplogo.php:150
+#, fuzzy, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr "Може да качите лого за групата ви."
+
+#: actions/grouplogo.php:362
+#, fuzzy
+msgid "Pick a square area of the image to be the logo."
+msgstr "Изберете квадратна област от изображението за аватар"
+
+#: actions/grouplogo.php:396
+msgid "Logo updated."
+msgstr "Лотого е обновено."
+
+#: actions/grouplogo.php:398
+msgid "Failed updating logo."
+msgstr "Неуспешно обновяване на логото."
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr ""
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr ""
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr "Списък с потребителите в тази група."
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+msgid "Admin"
+msgstr ""
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr "Блокиране"
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+msgid "Block this user"
+msgstr "Блокиране на потребителя"
+
+#: actions/groupmembers.php:441
+#, fuzzy
+msgid "Make user an admin of the group"
+msgstr "За да редактирате групата, трябва да сте й администратор."
+
+#: actions/groupmembers.php:473
+msgid "Make Admin"
+msgstr ""
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, fuzzy, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Бележки от %1$s в %2$s."
+
+#: actions/groupsearch.php:52
+#, fuzzy, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Търсене на хора в %%site.name%% по техните име, място или интереси. "
+"Отделяйте фразите за "
+
+#: actions/groupsearch.php:58
+msgid "Group search"
+msgstr "Търсене на групи"
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+#, fuzzy
+msgid "No results."
+msgstr "Няма резултати"
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Групи"
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr "Групи, страница %d"
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+msgid "Create a new group"
+msgstr "Създаване на нова група"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "Потребителят ви е блокирал."
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+#, fuzzy
+msgid "Error removing the block."
+msgstr "Грешка при запазване на потребител."
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "IM настройки"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%"
+"%). Въведете адреса си в настройките по-долу."
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "Страницата не е достъпна във вида медия, който приемате"
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Текущ потвърден Jabber/GTalk адрес."
+
+#: actions/imsettings.php:114
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за "
+"съобщение с инструкции. (Добавихте ли %s в списъка си там?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "IM адрес"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че "
+"сте добавили %s в списъка си с приятели в IM или GTalk клиента си."
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr "Изпращане на бележките по Jabber/GTalk."
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk."
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr "Изпращане по Jabber/GTalk на отговори от хора, "
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "Публикуване на MicroID за адреса в Jabber/GTalk."
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr "Няма Jabber ID."
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Грешка при нормализация на този Jabber ID"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr "Неправилен Jabber ID"
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr "Това вече е вашият Jabber ID."
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr "Този Jabber ID принадлежи на друг потребител."
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения "
+"от %s, трябва да го одобрите."
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr "Това не е вашият Jabber ID."
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr "Входяща кутия за %s — страница %d"
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr "Входяща кутия за %s"
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr "Това е входящата ви кутия с лични съобщения от други потребители."
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr "За да каните хора в %s, трябва да сте влезли."
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr "Неправилен адрес на е-поща: %s"
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr "Поканите са изпратени."
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr "Покани за нови потребители"
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr "Вече сте абонирани за следните потребители:"
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr "%s (%s)"
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:"
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr "Изпратени са покани до следните хора:"
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за "
+"увеличаването на общността тук!"
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+"Използвайте това поле, за да поканите приятели и колеги да използват "
+"услугата на сайта."
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr "Адреси на е-поща"
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr "Адреси на приятели, които каните (по един на ред)"
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr "Лично съобщение"
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr "Може да добавите и лично съобщение към поканата."
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr "Прати"
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s ви кани да ползвате заедно %2$s"
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -103,369 +1591,499 @@ msgstr ""
"\n"
"Искрено ваши, %2$s\n"
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
-#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
-msgstr "%1$s вече получава бележките ви в %2$s."
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
+msgstr "За да се присъедините към група, трябва да сте влезли."
-#: ../lib/mail.php:126
-#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-msgstr ""
-"%1$s вече получава бележките ви в %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"С уважение,\n"
-"%4$s.\n"
+#: actions/joingroup.php:90 lib/command.php:217
+msgid "You are already a member of that group"
+msgstr "Вече членувате в тази група."
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
-#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
-msgstr "%1$s реплики на съобщения от %2$s / %3$s."
+#: actions/joingroup.php:128 lib/command.php:234
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s"
+msgstr "Грешка при проследяване — потребителят не е намерен."
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid "%1$s's status on %2$s"
-msgstr "Бележка на %1$s от %2$s"
+msgid "%s joined group %s"
+msgstr "%s се присъедини към групата %s"
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
+msgstr "За напуснете група, трябва да сте влезли."
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "Общ поток в %s"
+#: actions/leavegroup.php:90 lib/command.php:268
+msgid "You are not a member of that group."
+msgstr "Не членувате в тази група."
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s и приятели"
+#: actions/leavegroup.php:119 lib/command.php:278
+#, fuzzy
+msgid "Could not find membership record."
+msgstr "Грешка при обновяване записа на потребител."
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
-msgstr "Общ поток на %s"
+#: actions/leavegroup.php:127 lib/command.php:284
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s"
+msgstr "Грешка при проследяване — потребителят не е намерен."
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid "%s status"
-msgstr "Състояние на %s"
-
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, php-format
-msgid "%s timeline"
-msgstr "Поток на %s"
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
-#, php-format
-msgid "%s updates from everyone!"
+msgid "%s left group %s"
msgstr ""
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-"(Трябва да получите веднага електронно писмо с указания за потвърждаване "
-"адреса на е-пощата ви.)"
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr "**%%site.name%%** е услуга за микроблогване. "
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr ". Изписват се пълните имена или псевдоними на участниците."
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително "
-"поле."
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 или повече знака"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 или повече знака. И не ги забравяйте!"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr "6 или повече знака. Задължително поле."
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения "
-"от %s, трябва да го одобрите."
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. "
-"Проверете кутията (или папката за спам) за кода и указанията за използването "
-"му."
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. "
-"Проверете съобщенията (или папката за спам) за кода и указанията за "
-"използването му."
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr "Не е открит методът в API."
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr "Методът в API все още се разработва."
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "Относно"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Приемане"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Добавяне"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "Добавяне на OpenID"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr "Добавяне или премахване OpenID"
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Адрес"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Адреси на приятели, които каните (по един на ред)"
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "Всички абонаменти"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "Всички бележки за %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "Всички бележки, намерени с \"%s\""
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Вече сте влезли."
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Вече сте абонирани!"
+#: actions/login.php:110 actions/login.php:120
+#, fuzzy
+msgid "Invalid or expired token."
+msgstr "Невалидно съдържание на бележка"
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
-msgstr "Наистина ли искате да изтриете тази бележка?"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Грешно име или парола."
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Одобряване на абонамента"
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
+msgid "Error setting user."
+msgstr "Грешка в настройките на потребителя."
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Вход"
+
+#: actions/login.php:243
+msgid "Login to site"
+msgstr ""
+
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Псевдоним"
+
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Парола"
+
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr "Запомни ме"
+
+#: actions/login.php:253 actions/register.php:479
msgid "Automatically login in the future; not for shared computers!"
msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!"
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Загубена или забравена парола"
+
+#: actions/login.php:282
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+"За по-голяма сигурност, моля въведете отново потребителското си име и парола "
+"при промяна на настройките."
+
+#: actions/login.php:286
+#, fuzzy, php-format
+msgid ""
+"Login with your username and password. Don't have a username yet? [Register]"
+"(%%action.register%%) a new account."
+msgstr ""
+"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) "
+"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). "
+
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:95
+#, php-format
+msgid "%s is already an admin for group \"%s\"."
+msgstr ""
+
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
+msgstr ""
+
+#: actions/makeadmin.php:145
+#, php-format
+msgid "Can't make %s an admin for group %s"
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status"
+msgstr ""
+
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr "Нова група"
+
+#: actions/newgroup.php:110
+msgid "Use this form to create a new group."
+msgstr "Използвайте тази бланка за създаване на нова група."
+
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr "Ново съобщение"
+
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr "Не може да изпращате съобщения до този потребител."
+
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr "Няма съдържание!"
+
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr "Не е указан получател."
+
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си "
+"тихичко."
+
+#: actions/newmessage.php:181
+#, fuzzy
+msgid "Message sent"
+msgstr "Съобщение"
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr "Прякото съобщение до %s е изпратено."
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr "Грешка в Ajax"
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "Нова бележка"
+
+#: actions/newnotice.php:199
+#, fuzzy
+msgid "Notice posted"
+msgstr "Бележки"
+
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за "
+"търсене (трябва да са по-дълги от 3 символа) с интервали."
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr "Търсене на текст"
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr " Търсене на \"%s\" в потока"
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "Бележки от %1$s в %2$s."
+
+#: actions/noticesearchrss.php:91
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "Всички бележки, намерени с \"%s\""
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set his email yet."
+msgstr ""
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr "Побутването е изпратено"
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr "Побутването е изпратено!"
+
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr "Бележката няма профил"
+
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "Бележка на %1$s от %2$s"
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Свързване"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr "Неподдържан формат на данните"
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "Търсене на хора"
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr "Търсене на бележки"
+
+#: actions/othersettings.php:60
+msgid "Other Settings"
+msgstr "Други настройки"
+
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr "Управление на различни други настройки."
+
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
+
+#: actions/othersettings.php:118
+msgid "Automatic shortening service to use."
+msgstr "Услуга за автоматично съкращаване, която да се ползва."
+
+#: actions/othersettings.php:122
+#, fuzzy
+msgid "View profile designs"
+msgstr "Настройки на профила"
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
+#: actions/othersettings.php:153
+msgid "URL shortening service is too long (max 50 chars)."
+msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)."
+
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr "Изходяща кутия за %s — страница %d"
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "Изходяща кутия за %s"
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr "Това е изходящата ви кутия с лични съобщения до други потребители."
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Смяна на паролата"
+
+#: actions/passwordsettings.php:69
+msgid "Change your password."
+msgstr "Смяна на паролата."
+
+#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
+#, fuzzy
+msgid "Password change"
+msgstr "Паролата е записана."
+
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr "Стара парола"
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "Нова парола"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 или повече знака"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Потвърждаване"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr "също като паролата по-горе"
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Промяна"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr "Паролата трябва да е 6 или повече знака."
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Паролите не съвпадат."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Грешна стара парола"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr "Грешка при запазване на потребител — невалидност."
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "Грешка при запазване на новата парола."
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Паролата е записана."
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Търсене на хора в %%site.name%% по техните име, място или интереси. "
+"Отделяйте фразите за "
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr "Търсене на хора"
+
+#: actions/peopletag.php:70
+#, fuzzy, php-format
+msgid "Not a valid people tag: %s"
+msgstr "Това не е правилен адрес на е-поща."
+
+#: actions/peopletag.php:144
+#, php-format
+msgid "Users self-tagged with %s - page %d"
+msgstr ""
+
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr "Невалидно съдържание на бележка"
+
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr "Настройки на профила"
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас."
+
+#: actions/profilesettings.php:99
+msgid "Profile information"
+msgstr "Данни на профила"
+
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Пълно име"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Лична страница"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr "Адрес на личната ви страница, блог или профил в друг сайт"
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Опишете себе си и интересите си в до 140 букви"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Опишете себе си и интересите си в до 140 букви"
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "За мен"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Местоположение"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Къде се намирате (град, община, държава и т.н.)"
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr "Етикети"
+
+#: actions/profilesettings.php:140
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+msgstr ""
+
+#: actions/profilesettings.php:144
+msgid "Language"
+msgstr "Език"
+
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr "Предпочитан език"
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr "Часови пояс"
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr "В кой часови пояс сте обикновено?"
+
#: actions/profilesettings.php:160
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
@@ -473,176 +2091,346 @@ msgstr ""
"Автоматично абониране за всеки, който се абонира за мен (подходящо за "
"ботове)."
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr "Аватар"
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr "Аватарът е обновен."
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
-#, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за "
-"съобщение с инструкции. (Добавихте ли %s в списъка си там?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за "
-"спам) за съобщение с указания."
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr "Очаква се потвърждение за този телефонен номер."
-
-#: ../lib/util.php:1318 lib/util.php:1452
-msgid "Before »"
-msgstr "Преди »"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "За мен"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
+#: actions/profilesettings.php:221 actions/register.php:223
+#, fuzzy, php-format
+msgid "Bio is too long (max %d chars)."
msgstr "Автобиографията е твърде дълга (до 140 символа)."
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr "Грешка при изтриване на бележката."
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
+msgstr "Не е избран часови пояс"
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr "Името на езика е твърде дълго (може да е до 50 знака)."
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
#, php-format
-msgid "Can't read avatar URL '%s'"
-msgstr "Грешка при четене адреса на аватара '%s'"
+msgid "Invalid tag: \"%s\""
+msgstr "Неправилен етикет: \"%s\""
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "Грешка при запазване на новата парола."
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr ""
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Отказ"
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "Грешка при запазване на профила."
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Грешка при създаване на потребителски OpenID обект"
+#: actions/profilesettings.php:336
+msgid "Couldn't save tags."
+msgstr "Грешка при запазване етикетите."
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Грешка при нормализация на този Jabber ID"
+#: actions/profilesettings.php:344
+msgid "Settings saved."
+msgstr "Настройките са запазени."
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
-msgstr "Грешка при нормализиране адреса на е-пощата"
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)"
+msgstr ""
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Промяна"
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr "Грешка при изтегляне на общия поток"
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
-msgstr "Промяна обработката на писмата"
+#: actions/public.php:129
+#, php-format
+msgid "Public timeline, page %d"
+msgstr "Общ поток, страница %d"
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Смяна на паролата"
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Общ поток"
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
-msgstr "Смяна на паролата"
+#: actions/public.php:151
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Емисия на общия поток"
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
-msgstr "Промяна настройките на профила"
+#: actions/public.php:155
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Емисия на общия поток"
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Потвърждаване"
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Емисия на общия поток"
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Потвърждаване на адреса"
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Потвърждаването е прекъснато."
+#: actions/public.php:182
+msgid "Be the first to post!"
+msgstr ""
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
-msgstr "Код за потвърждение"
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Кодът за потвърждение не е открит."
+#: actions/public.php:233
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
+#: actions/public.php:238
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
+msgstr ""
+
+#: actions/publictagcloud.php:57
+#, fuzzy
+msgid "Public tag cloud"
+msgstr "Емисия на общия поток"
+
+#: actions/publictagcloud.php:63
+#, php-format
+msgid "These are most popular recent tags on %s "
+msgstr ""
+
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
+msgid "Tag cloud"
+msgstr ""
+
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr "Вече сте влезли!"
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr "Няма такъв код за възстановяване."
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr "Това не е код за възстановяване."
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr "Код за възстановяване на непознат потребител."
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr "Грешка в кода за потвърждение."
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново."
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr "Грешка при обновяване на потребител с потвърден email адрес."
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани."
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr "Възстановяване"
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr "Нова парола"
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr "Възстановяване на паролата"
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr "Поискано е възстановяване на парола"
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr "Непознато действие"
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 или повече знака. И не ги забравяйте!"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr "Също като паролата по-горе"
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr "Обновяване"
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Въведете псевдоним или е-поща."
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr "Няма потребител с такава е-поща или потребителско име."
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr "Няма указана е-поща за този потребител."
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr "Грешка при запазване на потвърждение за адрес"
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"На е-пощата, с която сте регистрирани са изпратени инструкции за "
+"възстановяване на паролата."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr "Неочаквано подновяване на паролата."
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "Паролата трябва да е от поне 6 знака."
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "Паролата и потвърждението й не съвпадат."
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr "Новата парола е запазена. Влязохте успешно."
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
+msgid "Sorry, only invited people can register."
+msgstr ""
+
+#: actions/register.php:92
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "Грешка в кода за потвърждение."
+
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr "Записването е успешно."
+
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr "Регистриране"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr "Записването не е позволено."
+
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза."
+
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr "Неправилен адрес на е-поща."
+
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "Адресът на е-поща вече се използва."
+
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr "Неправилно име или парола."
+
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr ""
+"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително "
+"поле."
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr "6 или повече знака. Задължително поле."
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr "Същото като паролата по-горе. Задължително поле."
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "Е-поща"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr "Използва се само за промени, обяви или възстановяване на паролата"
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr "По-дълго име, за предпочитане \"истинското\" ви име."
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr "Текстовете и файловите ми са достъпни под "
+
+#: actions/register.php:495
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
+
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон."
+
+#: actions/register.php:537
#, php-format
msgid ""
"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -675,2138 +2463,14 @@ msgstr ""
"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи "
"само приятни мигове!"
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Свързване"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Свързване на съществуваща сметка"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Контакт"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "Грешка при създаване на OpenID форма: %s"
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви."
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "Грешка при пренасочване към сървър: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "Грешка при запазване данните на аватара"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "Грешка при запазване на новия профил"
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr "Грешка при абониране на друг потребител за вас."
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr "Грешка при абониране."
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr "Грешка при обновяване на потребител с потвърден email адрес."
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "Грешка при изтриване потвърждението по е-поща."
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "Грешка при изтриване на абонамента."
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr "Не са открити бележки."
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr "Не е получен token за одобрение."
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "Не може да се вмъкне код за потвърждение."
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "Грешка при добавяне на нов абонамент."
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "Грешка при запазване на профила."
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr ""
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr "Грешка при обновяване записа на потребител."
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "Грешка при обновяване на потребителя."
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Създаване"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Създаване на нов потребител с този псевдоним."
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Създаване на нова сметка"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Създаване на нов акаунт за OpenID, който вече има потребител."
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Текущ потвърден Jabber/GTalk адрес."
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr "Текущ потвърден телефонен номер за SMS-и."
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr "Текущ потвърден адрес на е-поща."
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr "В момента"
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr ""
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr "Изтриване на бележката"
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Опишете себе си и интересите си в до 140 букви"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "Е-поща"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr "Адрес на е-поща"
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr "Настройки на е-поща"
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "Адресът на е-поща вече се използва."
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "Потвърждаване адреса на е-поща"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr "Адрес на е-поща, като \"UserName@example.org\""
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr "Адреси на е-поща"
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Въведете псевдоним или е-поща."
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr "Въведете кода, който получихте по телефона."
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr "Грешка при одобряване на token"
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr "Грешка при свързване на потребителя към OpenID."
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr "Грешка при свързване на потребителя."
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr "Грешка при вмъкване на аватар"
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr "Грешка при вмъкване на нов профил"
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr "Грешка при вмъкване на отдалечен профил"
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr "Грешка при запазване на потвърждение за адрес"
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr "Грешка при запазване на отдалечен профил"
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr "Грешка при запазване на профил"
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr "Грешка при запазване на потребител."
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr "Грешка при запазване на потребител — невалидност."
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
-msgid "Error setting user."
-msgstr "Грешка в настройките на потребителя."
-
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr "Грешка при обновяване на профил"
-
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr "Грешка при обновяване на отдалечен профил"
-
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr "Грешка в кода за потвърждение."
-
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr "Съществуващ псевдоним"
-
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "Въпроси"
-
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr "Неуспешно обновяване на аватара."
-
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, php-format
-msgid "Feed for friends of %s"
-msgstr "Емисия с приятелите на %s"
-
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, php-format
-msgid "Feed for replies to %s"
-msgstr "Емисия с отговорите към %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr "Емисия за етикета %s"
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr "Търсене в съдържанието на бележките"
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr "Търсене на хора в сайта"
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
-#: actions/login.php:282
+#: actions/register.php:561
msgid ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
msgstr ""
-"За по-голяма сигурност, моля въведете отново потребителското си име и парола "
-"при промяна на настройките."
+"(Трябва да получите веднага електронно писмо с указания за потвърждаване "
+"адреса на е-пощата ви.)"
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Пълно име"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "Пълното име е твърде дълго (макс. 255 знака)"
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Помощ"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Начало"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Лична страница"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr "Адресът на личната страница не е правилен URL."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr "Искам да изпращам бележки по пощата."
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr "IM"
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "IM адрес"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "IM настройки"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си "
-"име и парола."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"Ако искате да добавите OpenID към сметката си, въведете го в кутийката "
-"отдолу и натиснете \"Добавяне\"."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Ако сте забравили или загубили паролата си, може да получите нова на е-"
-"пощата, въведена в профила ви."
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr "Входяща поща"
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr "Входящият адрес на е-поща е премахнат."
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Грешна стара парола"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Грешно име или парола."
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"На е-пощата, с която сте регистрирани са изпратени инструкции за "
-"възстановяване на паролата."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr "Неправилен адрес на аватар '%s'"
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr "Неправилен адрес на е-поща: %s"
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr "Неправилен адрес на домашна страница '%s'"
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr "Неправилен адрес на лиценз '%s'"
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr "Невалидно съдържание на бележка"
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr "Неправилен адрес на бележка"
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr "Неправилен адрес на бележка"
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr "Неправилен адрес на профил '%s'."
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Неправилен адрес на профил (грешен формат)"
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr "Върнат от сървъра неправилен адрес на профила."
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr "Неправилен размер."
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr "Неправилно име или парола."
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr "Поканите са изпратени."
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr "Изпратени са покани до следните хора:"
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr "Покани"
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr "Покани за нови потребители"
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, "
-"достъпна под [GNU Affero General Public License](http://www.fsf.org/"
-"licensing/licenses/agpl-3.0.html)."
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr "Този Jabber ID принадлежи на друг потребител."
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че "
-"сте добавили %s в списъка си с приятели в IM или GTalk клиента си."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr "Език"
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr "Името на езика е твърде дълго (може да е до 50 знака)."
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Местоположение"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Вход"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Влизане с [OpenID](%%doc.openid%%)."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-msgstr ""
-"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) "
-"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). "
-
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Изход"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr "По-дълго име, за предпочитане \"истинското\" ви име."
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Загубена или забравена парола"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната."
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr "Управление на пощата, идваща от %%site.name%%."
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Участник от"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr "Микроблог на %s"
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
-msgstr ""
-"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който "
-"не фигурира тук, пишете ни на адрес %s."
-
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr "Текстовете и файловите ми са достъпни под "
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr "Ново"
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
-#, php-format
-msgid "New email address for posting to %s"
-msgstr "Нов адрес на е-поща за публикщуване в %s"
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr "Добавен е нов входящ адрес на е-поща."
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "Нов псевдоним"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr "Нова бележка"
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "Нова парола"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr "Новата парола е запазена. Влязохте успешно."
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Псевдоним"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Опитайте друг псевдоним, този вече е зает."
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr ""
-"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
-"между тях."
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Този псевдоним не е разрешен тук."
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Псевдоним на потребител, когото искате да следите"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Псевдоним или е-поща"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr "Не"
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr "Няма Jabber ID."
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr "Няма заявка за одобрение."
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-msgid "No carrier selected."
-msgstr "Не е избран оператор."
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr "Не е въведен код."
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr "Няма код за потвърждение."
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr "Няма съдържание!"
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr "Не е въведена е-поща."
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr "Няма id."
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr "Няма входящ адрес на е-поща."
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr "Отдалеченият сървър не е предоставил псевдоним."
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr "Няма псевдоним."
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr "Няма потвърждения, очакващи да бъдат отказани."
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr "Не е въведен телефонен номер."
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr "Сървърът не е върнал адрес на профила."
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr "Няма указана е-поща за този потребител."
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr "Заявката не е намерена!"
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr "Няма резултати"
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr "Няма размер."
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr "Не е открита бележка с такъв идентификатор."
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr "Не е открита бележка с такъв идентификатор."
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr "Няма такъв OpenID-адрес."
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr "Няма такъв документ."
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr "Няма такава бележка."
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr "Няма такъв код за възстановяване."
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr "Няма такъв абонамент"
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr "Няма такъв потребител"
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr "Няма потребител с такава е-поща или потребителско име."
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr "Няма никого за показване!"
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr "Това не е код за възстановяване."
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr "Това не е регистриран потребител."
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr "Неподдържан формат на данните"
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr "Неправилен Jabber ID"
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr "Неправилен OpenID"
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr "Това не е правилен адрес на е-поща."
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr "Неправилен адрес на е-поща."
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr "Неправилен псевдоним."
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr "Неправилен адрес на профил (грешна услуга)."
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr "Неправилен адрес на профил (няма зададен XRDS)."
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr "Неправилен адрес на профил (няма YADIS документ)."
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr "Файлът не е изображение или е повреден."
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr "Забранено."
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr "Неочакван отговор."
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr "Не е открито."
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr "Не сте влезли в системата."
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr "Не сте абонирани!"
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr "Търсене на бележки"
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, php-format
-msgid "Notice feed for %s"
-msgstr "Емисия с бележки на %s"
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr "Бележката няма профил"
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr "Бележки"
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr "Бележки с етикет %s"
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr "Стара парола"
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr "Настройки на OpenID"
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr "Автоматично предаване на OpenID"
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr "Влизане с OpenID"
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr "OpenID URL"
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr "Влизането с OpenID е прекратено."
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr "Грешка при влизане с OpenID: %s"
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr "Проблем с OpenID: %s"
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "OpenID е премахнат."
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "Настройки на OpenID"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr "Може да добавите и лично съобщение към поканата."
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr "Частично качване на файла."
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Парола"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "Паролата и потвърждението й не съвпадат."
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "Паролата трябва да е от поне 6 знака."
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr "Поискано е възстановяване на парола"
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Паролата е записана."
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Паролите не съвпадат."
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr "Хора"
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr "Търсене на хора"
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr "Търсене на хора"
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Лично"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr "Лично съобщение"
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Телефонен номер — с код, без пунктоация и без интервали."
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-msgstr ""
-"Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
-"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
-
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk."
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Настройки"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Настройките са запазени."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr "Предпочитан език"
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr "Поверителност"
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr "Проблем при записване на бележката."
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr "Профил"
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr "Адрес на профила"
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr "Настройки на профила"
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr "Непознат профил"
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-msgid "Public Stream Feed"
-msgstr "Емисия на общия поток"
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr "Общ поток"
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Публикуване на MicroID за адреса в Jabber/GTalk."
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr "Публикуване на MicroID за адреса на е-пощата."
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr "Скорошни етикети"
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr "Възстановяване"
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr "Възстановяване на паролата"
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr "Код за възстановяване на непознат потребител."
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr "Регистриране"
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr "Записването не е позволено."
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr "Записването е успешно."
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr "Охвърляне"
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr "Запомни ме"
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr "Отдалечен профил без съответстващ локален"
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr "Отдалечен абонамент"
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr "Премахване"
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr "Премахване на OpenID"
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-msgstr ""
-"Премахването на единствения OpenID ще направи влизането в системата "
-"невъзможно. За да го изтриете, първо добавете друг OpenID."
-
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr "Отговори"
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
-#, php-format
-msgid "Replies to %s"
-msgstr "Отговори на %s"
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr "Обновяване"
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr "Нова парола"
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr "SMS"
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr "Телефонен номер за SMS"
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr "Настройки за SMS"
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr "Потвърждение за SMS"
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Също като паролата по-горе"
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr "Същото като паролата по-горе. Задължително поле."
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr "Запазване"
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr "Търсене"
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-msgid "Search Stream Feed"
-msgstr "Търсене в емисията на потока"
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-msgstr ""
-"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за "
-"търсене (трябва да са по-дълги от 3 символа) с интервали."
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Търсене на хора в %%site.name%% по техните име, място или интереси. "
-"Отделяйте фразите за "
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-msgid "Select a carrier"
-msgstr "Изберете оператор"
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr "Прати"
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr "Изпратете писмо до този адрес за публикуване като бележка."
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr "Изпращане на уведомления за нови абонаменти по пощата."
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Изпращане на бележките по Jabber/GTalk."
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни "
-"такси от оператора."
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr "Изпращане по Jabber/GTalk на отговори от хора, "
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr "Настройки"
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr "Настройките са запазени."
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr "Най-популярните етикети за изминалата седмица"
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr "Някой друг вече използва този OpenID."
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr "Случи се нещо странно."
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr "Входящата поща не е разрешена."
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr "Това не е вашият входящ адрес."
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr "Изходен код"
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr "Статистики"
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr "Няма запазен OpenID."
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr "Абониране"
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr "Абонати"
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr "Абонаментът е одобрен"
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr "Абонаментът е отказан"
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr "Абонаменти"
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr "Системна грешка при качване на файл."
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr "Етикети"
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr "Текст"
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr "Търсене на текст"
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr "Този OpenID не ви принадлежи."
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr "Този адрес е вече потвърден."
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr "Този код за потвърждение не е за вас!"
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr "Тази е-поща вече се използва от друг потребител."
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr "Файлът е твърде голям."
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr "Това вече е вашият Jabber ID."
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr "Това и сега е адресът на е-пощата ви."
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr "Това и сега е номерът на телефона ви."
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr "Това не е вашият Jabber ID."
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr "Това не е вашият адрес на е-поща."
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr "Това не е вашият телефонен номер."
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr "Грешен IM адрес."
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr "Този код за потвърждение е грешен."
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr "Този телефонен номер вече се използва от друг потребител."
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака."
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr "Това е твърде дълго. Трябва да е най-много 255 знака."
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr "Адресът \"%s\" е потвърден за сметката ви."
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr "Адресът е премахнат."
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"Абонаментът е одобрен, но не е зададен callback URL. За да завършите "
-"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:"
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно "
-"абонамента, проверете инструкциите на сайта."
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr "Това са хората, които четат бележките на %s."
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr "Tова са хората, които четат бележките ви."
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr "Хора, чийто бележки %s чете."
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr "Няма хора, чийто бележки четете."
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:"
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново."
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-"Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да "
-"преминете към OpenID доставчика си натиснете бутона за изпращане."
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-"За първи път влизате в системата като %s, затова трябва да присъединим "
-"OpenID към локалния ви профил. Можете да създадете нова сметка или да "
-"използвате съществуваща, ако имате такава."
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr "Този метод изисква заявка POST или DELETE."
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr "Този метод изисква заявка POST."
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr "Страницата не е достъпна във вида медия, който приемате"
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr "Часови пояс"
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
-msgstr "Не е избран часови пояс"
-
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
#: actions/remotesubscribe.php:98
#, php-format
msgid ""
@@ -2819,2158 +2483,449 @@ msgstr ""
"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на "
"профила си в нея по-долу."
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
-msgstr "Трябва да се дадат два идентификатора или имена на потребители."
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
+msgstr "Отдалечен абонамент"
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Адрес на личната ви страница, блог или профил в друг сайт"
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Абониране за този потребител"
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване"
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr "Неочаквано изпращане на форма."
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr "Неочаквано подновяване на паролата."
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr "Непознато действие"
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr "Непозната версия на протокола OMB."
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-"Освен ако не е указано друго, съдържанието на този сайт принадлежи на "
-"създателите му и е достъпно под "
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr "Неразпознат вид адрес %s"
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr "Отписване"
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr "Неподдържана версия на OMB"
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr "Форматът на файла с изображението не се поддържа."
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr "Бележки през SMS"
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr "Бележки през месинджър (IM)"
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr "Бележки от %1$s и приятели в %2$s."
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr "Бележки от %1$s в %2$s."
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr "Качване"
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-"Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го "
-"промените по-късно, затова се уверете, че е поне приблизително квадратен. "
-"Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви "
-"принадлежи и искате да споделите."
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr "Качване на нова снимка за профила"
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr ""
-"Използвайте това поле, за да поканите приятели и колеги да използват "
-"услугата на сайта."
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "Използва се само за промени, обяви или възстановяване на паролата"
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr "Потребителят, когото проследявате, не съществува. "
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr "Потребителят няма профил."
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr "Потребителски псевдоним"
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
-msgstr "Потребителят не е открит."
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Псевдоним на потребител, когото искате да следите"
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
-msgstr "В кой часови пояс сте обикновено?"
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
+msgstr "Адрес на профила"
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
-msgstr "Какво става, %s?"
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
+msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване"
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
-msgstr "Къде се намирате (град, община, държава и т.н.)"
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
+msgstr "Абониране"
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr "Грешен вид изображение за '%s'"
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
+msgstr "Неправилен адрес на профил (грешен формат)"
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr "Грешен размер на изображението '%s'"
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr "Да"
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr "Вече използвате този OpenID!"
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
+#: actions/remotesubscribe.php:168
+#, fuzzy
msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо."
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
+msgstr "Неправилен адрес на профил (няма YADIS документ)."
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
-msgstr "Вече сте влезли!"
-
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr "Вече сте абонирани за следните потребители:"
-
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr "С указания потребител не сте записани като приятели."
-
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr "Тук можете да смените паролата си. Внимавайте колко е добра новата."
-
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr "Първо се регистрирайте, за да започнете да публикувате бележки."
-
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
-#: actions/smssettings.php:69
-#, php-format
-msgid "You can receive SMS messages through email from %%site.name%%."
-msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%."
-
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
-msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr ""
-"Можете да премахнете OpenID от сметката си, като натиснете бутона "
-"\"Премахване\"."
-
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
-msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-msgstr ""
-"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%"
-"%). Въведете адреса си в настройките по-долу."
-
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас."
-
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr "Можете да ползвате локален абонамент!"
-
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза."
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr "Не сте ни изпратили този профил"
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
+#: actions/remotesubscribe.php:176
+msgid "That’s a local profile! Login to subscribe."
msgstr ""
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr "Не може да изтривате бележки на друг потребител."
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr "За да каните хора в %s, трябва да сте влезли."
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за "
-"увеличаването на общността тук!"
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr "Разпознати сте. Въведете паролата си по-долу. "
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr "Вашият OpenID URL"
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани."
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и "
-"същ акаунт. От тук се управляват съответните OpenID."
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr "преди няколко секунди"
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr "преди около %d дни"
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr "преди около %d часа"
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr "преди около %d минути"
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr "преди около %d месеца"
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr "преди около ден"
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr "преди около минута"
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr "преди около месец"
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr "преди около година"
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr "преди около час"
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr "изтриване"
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr "в отговор на..."
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr "отговор"
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr "също като паролата по-горе"
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr "неподдържан вид файл"
-
-#: ../lib/util.php:1309 lib/util.php:1443
-msgid "« After"
-msgstr "« След"
-
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr "Тази бележка не е отбелязана като любима!"
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr "Грешка при изтриване на любима бележка."
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr "Любимо"
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr "Изпращане на писмо при отбелязване на моя бележка като любима."
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr "Изпращане на писмо при ново лично съобщение."
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr "Тази бележка вече е отбелязана като любима!"
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr "Грешка при отбелязване като любима."
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr "Нелюбимо"
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
-#, php-format
-msgid "%s favorite notices"
-msgstr "%s любими бележки"
-
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr "Емисия с любимите бележки на %s"
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr "Входяща кутия за %s — страница %d"
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr "Входяща кутия за %s"
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr "Това е входящата ви кутия с лични съобщения от други потребители."
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-"%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n"
-"\n"
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr "Автоматично влизане за в бъдеще; "
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr "С оглед на сигурността, въведете отново "
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr "Влезте с името и паролата си. "
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr "Твърде дълго. Може да е най-много 140 знака."
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr "Не е указан получател."
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr "Не може да изпращате съобщения до този потребител."
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
-"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си "
-"тихичко."
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr "Няма такъв потребител"
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr "Ново съобщение"
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr "Бележка без съответстващ профил"
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr "[OpenID](%%doc.openid%%) ви позволява да влизате в различни сайтове"
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr "Ако искате да добавите OpenID към профила си, "
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr "Ако премахнете единствения си OpenID, няма да можете да влизате!"
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr "Можете да премахнете OpenID от профила си "
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr "Изходяща кутия за %s — страница %d"
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr "Изходяща кутия за %s"
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr "Това е изходящата ви кутия с лични съобщения до други потребители."
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr "Търсене на хора в %%site.name%% по име, местоположение или интереси. "
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr "Можете а обновите личните си данни тук "
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr "Потребител без съответстващ профил"
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr "Кодът ви за потвърждение е твърде стар. "
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr ""
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr ""
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr "Псевдонимът ви на този сървър, "
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr "Упътване за възстановяване на паролата "
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr "Новата парола е записана. "
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr "Паролата трябва да е 6 или повече знака."
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. "
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr ""
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr ""
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr "Емисия с любимите бележки на %s"
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr "Грешка при изтегляне на любимите бележки"
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr "Няма такова съобщение"
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr "Само подателят и получателят могат да четат това съобщение."
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr "Съобщение до %1$s в %2$s"
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr "Съобщение от %1$s в %2$s"
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr "Изпращане на съобщение"
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, php-format
-msgid "Mobile carrier for your phone. "
-msgstr "Мобилен оператор на телефона ви."
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr "Преки съобщения до %s"
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr "Всички преки съобщения, изпратени до %s"
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr "Изпратени от вас преки съобщения"
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr "Всички преки съобщения, изпратени от %s"
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr "Липсва текст на съобщението"
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr "Получателят не е открит"
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr ""
-"Не може да изпращате преки съобщения до хора, които не са в списъка ви с "
-"приятели."
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr "%s / Отбелязани като любими от %s"
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr "%s бележки отбелязани като любими от %s / %s."
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr "%s отбеляза бележката ви като любима"
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-"%1$s току-що отбеляза като любима бележката ви от %2$s.\n"
-"\n"
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и "
-"там."
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr "Настройки за Twitter"
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr "Профил в Twitter"
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr "Текущ проверен профил в Twitter"
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr "Име в Twitter"
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr "Без интервали, моля!"
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr "Парола за Twitter"
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr "Автоматично препращане на бележките ми към Twitter"
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr "Препращане на локалните отговори с \"@\" и към Twitter"
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr "Абониране за приятелите ми от Twitter тук"
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-"Потребителското име може да съдържа само цифри, малки и главни букви и добна "
-"черта. Може да е най-много 15 знака."
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr "Грешка при сверяване на данните ви с Twitter"
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr "Грешка при извличане данните на профила \"%s\" от Twitter."
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr "Грешка при записване настройките за Twitter"
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr "Настройките за Twitter са запазени."
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr "Това не е вашият профил в Twitter."
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr "Грешка при премахване на профила от Twitter"
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr "Профилът от Twitter е премахнат."
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr "Грешка при записване настройките за Twitter"
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr "Настройките за Twitter са запазени."
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr ""
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr ""
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr ""
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr "Резултат от командата"
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr "Командата е изпълнена"
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr "Грешка при изпълнение на командата"
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr "За съжаление тази команда все още не се поддържа."
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr "Абонаменти: %1$s\n"
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr "Потребителят няма последна бележка"
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr "Бележката е отбелязана като любима."
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr "%1$s (%2$s)"
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr "Пълно име: %s"
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr "Местоположение: %s"
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr "Домашна страница: %s"
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr "Относно: %s"
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr ""
-"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d."
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr "Прякото съобщение до %s е изпратено."
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr "Грешка при изпращане на прякото съобщение"
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr "Уточнете името на потребителя, за когото се абонирате."
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr "Абонирани сте за %s."
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr "Уточнете името на потребителя, от когото се отписвате."
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr "Отписани сте от %s."
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr "Командата все още не се поддържа."
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr "Уведомлението е изключено."
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr "Грешка при изключване на уведомлението."
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr "Уведомлението е включено."
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr "Грешка при включване на уведомлението."
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr "Команди:\n"
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr "Грешка при вмъкване на съобщението."
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr "Грешка при обновяване на бележката с нов URL-адрес."
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr "Потребител без съответстващ профил в системата."
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr "Ново лично съобщение от %s"
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-"%1$s (%2$s) ви изпрати лично съобщение:\n"
-"\n"
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr "Само потребителят може да отваря собствената си кутия."
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr "Тази форма сама ще се изпрати автоматично."
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr "Любими"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr "Любими бележки на %s"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr "Потребител"
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr "Входящи"
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr "Получените от вас съобщения"
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr "Изходящи"
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr "Изпратените от вас съобщения"
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr "Twitter"
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr "Настройки за интеграция с Twitter"
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr "До"
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr "Грешка при обработка на съобщението"
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, php-format
-msgid "%s and friends, page %d"
-msgstr "%s и приятели, страница %d"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr "Можете да качите личен аватар тук."
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
-msgid "Avatar settings"
-msgstr "Настройки за аватар"
-
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr "Оригинал"
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr "Преглед"
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr "Изрязване"
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
+#: actions/remotesubscribe.php:183
#, fuzzy
-msgid "There was a problem with your session token. "
-msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
+msgid "Couldn’t get a request token."
+msgstr "Не е получен token за одобрение."
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Изберете квадратна област от изображението за аватар"
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr ""
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-#, fuzzy
-msgid "Lost our file."
-msgstr "Няма такава бележка."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr "Неподдържан вид файл"
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr "Не е указан профил."
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr "Не е открит профил с такъв идентификатор."
-
-#: actions/block.php:111 actions/block.php:134
-msgid "Block user"
-msgstr "Блокиране на потребителя"
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr "Наистина ли искате да блокирате този потребител? "
-
-#: actions/block.php:162 actions/block.php:165
-msgid "You have already blocked this user."
-msgstr "Вече сте блокирали този потребител."
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr "Грешка при записване данните за блокирането."
-
-#: actions/confirmaddress.php:159
-#, fuzzy, php-format
-msgid "The address \"%s\" has been "
-msgstr "Адресът е премахнат."
-
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr "Ще изтриете напълно бележката. "
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr "Добавяне към любимите"
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
#, php-format
-msgid "Edit %s group"
-msgstr ""
+msgid "Replies to %s"
+msgstr "Отговори на %s"
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr ""
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr "За да създавате група, трябва да сте влезли."
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-msgid "No nickname"
-msgstr "Няма псевдоним."
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-msgid "No such group"
-msgstr "Няма такава група."
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr "За да редактирате групата, трябва да сте й администратор."
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr ""
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-#, fuzzy
-msgid "Nickname must have only lowercase letters "
-msgstr ""
-"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
-"между тях."
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-#, fuzzy
-msgid "description is too long (max 140 chars)."
-msgstr "Автобиографията е твърде дълга (до 140 символа)."
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-msgid "Could not update group."
-msgstr "Грешка при обновяване на групата."
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-msgid "Options saved."
-msgstr "Настройките са запазени."
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr "Очаква се потвърждение за този адрес. "
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#, fuzzy
-msgid "Make a new email address for posting to; "
-msgstr "Нов адрес на е-поща за публикщуване в %s"
-
-#: actions/emailsettings.php:157
-#, fuzzy
-msgid "Send me email when someone "
-msgstr "Изпращане на писмо при ново лично съобщение."
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr ""
-
-#: actions/emailsettings.php:321
-#, fuzzy
-msgid "That email address already belongs "
-msgstr "Тази е-поща вече се използва от друг потребител."
-
-#: actions/emailsettings.php:343
-#, fuzzy
-msgid "A confirmation code was sent to the email address you added. "
-msgstr ""
-"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения "
-"от %s, трябва да го одобрите."
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr ""
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr ""
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr ""
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr "Пропускане"
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-#, fuzzy
-msgid "No notice content!"
-msgstr "Няма съдържание!"
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr "Страниране"
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-msgid "After"
-msgstr "След"
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-msgid "Before"
-msgstr "Преди"
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr "Благодарим ви, че поканихте приятели да ползват %s!"
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr "Изпратени са покани до следните хора:"
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, fuzzy, php-format
-msgid "You have been invited to %s"
-msgstr "\"Побутване\" от %s"
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, fuzzy, php-format
-msgid "Invite your friends to use %s"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr ""
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr "Изпращане на покани"
-
-#: actions/facebookremove.php:56
-msgid "Couldn't remove Facebook user."
-msgstr "Грешка при премахване на профила от Facebook."
-
-#: actions/facebooksettings.php:65
-#, fuzzy
-msgid "There was a problem saving your sync preferences!"
-msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
-
-#: actions/facebooksettings.php:67
-#, fuzzy
-msgid "Sync preferences saved."
-msgstr "Настройките са запазени."
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr "Автоматично препращане на бележките ми към Facebook."
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr "Препращане на локалните отговори с \"@\" и към Facebook."
-
-#: actions/facebooksettings.php:106
-msgid "Prefix"
-msgstr "Прeдставка"
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr "Представка за добавяне към бележките."
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr ""
-
-#: actions/facebooksettings.php:147
-msgid "Sync preferences"
-msgstr "Синхронизиране на настройките"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-#, fuzzy
-msgid "Disfavor favorite"
-msgstr "Нелюбимо"
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-msgid "Popular notices"
-msgstr "Популярни бележки"
-
-#: actions/favorited.php:67
-#, php-format
-msgid "Popular notices, page %d"
-msgstr "Популярни бележки, страница %d"
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr "Най-популярните бележки в момента в сайта."
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr "Избрани потребители"
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr "Избрани потребители, страница %d"
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr ""
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr "Потребителят е забранил да се абонирате за него."
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr "Липсва ID"
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr "Лого на групата"
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr "Може да качите лого за групата ви."
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-msgid "Logo updated."
-msgstr "Лотого е обновено."
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-msgid "Failed updating logo."
-msgstr "Неуспешно обновяване на логото."
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr ""
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr ""
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr "Списък с потребителите в тази група."
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr "Групи"
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr "Групи, страница %d"
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr ""
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-msgid "Create a new group"
-msgstr "Създаване на нова група"
-
-#: actions/groupsearch.php:57
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание."
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-msgid "Group search"
-msgstr "Търсене на групи"
-
-#: actions/imsettings.php:70
-#, fuzzy
-msgid "You can send and receive notices through "
-msgstr "Не може да изпращате съобщения до този потребител."
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr "Адрес в Jabber или GTalk, "
-
-#: actions/imsettings.php:147
-msgid "Send me replies through Jabber/GTalk "
-msgstr "Изпращане на бележките по Jabber/GTalk "
-
-#: actions/imsettings.php:321
-#, fuzzy, php-format
-msgid "A confirmation code was sent "
-msgstr "Няма код за потвърждение."
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr "За да се присъедините към група, трябва да сте влезли."
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-msgid "You are already a member of that group"
-msgstr "Вече членувате в тази група."
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s"
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr "%s се присъедини към групата %s"
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr ""
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr "За напуснете група, трябва да сте влезли."
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-msgid "No such group."
-msgstr "Няма такава група"
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-msgid "You are not a member of that group."
-msgstr "Не членувате в тази група."
-
-#: actions/leavegroup.php:100
-#, fuzzy
-msgid "You may not leave a group while you are its administrator."
-msgstr "Не може да изтривате бележки на друг потребител."
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-#, fuzzy
-msgid "Could not find membership record."
-msgstr "Грешка при обновяване записа на потребител."
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s"
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr ""
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr ""
-
-#: actions/microsummary.php:69
-msgid "No current status"
-msgstr ""
-
-#: actions/newgroup.php:53
-msgid "New group"
-msgstr "Нова група"
-
-#: actions/newgroup.php:115 actions/newgroup.php:110
-msgid "Use this form to create a new group."
-msgstr "Използвайте тази бланка за създаване на нова група."
-
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-msgid "Could not create group."
-msgstr "Грешка при създаване на групата."
-
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-#, fuzzy
-msgid "Could not set group membership."
-msgstr "Грешка при създаване на нов абонамент."
-
-#: actions/newmessage.php:119 actions/newnotice.php:132
-msgid "That's too long. "
-msgstr "Това е твърде дълго. "
-
-#: actions/newmessage.php:134
-#, fuzzy
-msgid "Don't send a message to yourself; "
-msgstr "Не може да изпращате съобщения до този потребител."
-
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
-#, fuzzy
-msgid "Notice posted"
-msgstr "Бележки"
-
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr "Грешка в Ajax"
-
-#: actions/nudge.php:85
-msgid ""
-"This user doesn't allow nudges or hasn't confirmed or set his email yet."
-msgstr ""
-
-#: actions/nudge.php:94
-msgid "Nudge sent"
-msgstr "Побутването е изпратено"
-
-#: actions/nudge.php:97
-msgid "Nudge sent!"
-msgstr "Побутването е изпратено!"
-
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-#, fuzzy
-msgid "OpenID login"
-msgstr "Влизане с OpenID"
-
-#: actions/openidsettings.php:128
-#, fuzzy
-msgid "Removing your only OpenID "
-msgstr "Премахване на OpenID"
-
-#: actions/othersettings.php:60
-msgid "Other Settings"
-msgstr "Други настройки"
-
-#: actions/othersettings.php:71
-msgid "Manage various other options."
-msgstr "Управление на различни други настройки."
-
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr "Автоматично съкращаване на адреси"
-
-#: actions/othersettings.php:112
-msgid "Service"
-msgstr "Услуга"
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
-#: actions/othersettings.php:118
-msgid "Automatic shortening service to use."
-msgstr "Услуга за автоматично съкращаване, която да се ползва."
-
-#: actions/othersettings.php:144 actions/othersettings.php:146
-#: actions/othersettings.php:153
-msgid "URL shortening service is too long (max 50 chars)."
-msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)."
-
-#: actions/passwordsettings.php:69
-msgid "Change your password."
-msgstr "Смяна на паролата."
-
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
-#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
-#, fuzzy
-msgid "Password change"
-msgstr "Паролата е записана."
-
-#: actions/peopletag.php:35 actions/peopletag.php:70
-#, fuzzy, php-format
-msgid "Not a valid people tag: %s"
-msgstr "Това не е правилен адрес на е-поща."
-
-#: actions/peopletag.php:47 actions/peopletag.php:144
-#, php-format
-msgid "Users self-tagged with %s - page %d"
-msgstr ""
-
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr ""
-
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
-msgid "Profile information"
-msgstr "Данни на профила"
-
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
-#: actions/profilesettings.php:140
-msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
-msgstr ""
-
-#: actions/profilesettings.php:144
-#, fuzzy
-msgid "Automatically subscribe to whoever "
-msgstr ""
-"Автоматично абониране за всеки, който се абонира за мен (подходящо за "
-"ботове)."
-
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
-#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Неправилен етикет: \"%s\""
-
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
-#: actions/profilesettings.php:336
-msgid "Couldn't save tags."
-msgstr "Грешка при запазване етикетите."
-
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
-#: actions/public.php:129
-#, php-format
-msgid "Public timeline, page %d"
-msgstr "Общ поток, страница %d"
-
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr "Грешка при изтегляне на общия поток"
-
-#: actions/public.php:220
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-msgstr ""
-
-#: actions/publictagcloud.php:57
-#, fuzzy
-msgid "Public tag cloud"
-msgstr "Емисия на общия поток"
-
-#: actions/publictagcloud.php:63
-#, php-format
-msgid "These are most popular recent tags on %s "
-msgstr ""
-
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
-msgid "Tag cloud"
-msgstr ""
-
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
-msgid "Sorry, only invited people can register."
-msgstr ""
-
-#: actions/register.php:149
-#, fuzzy
-msgid "You can't register if you don't "
-msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза."
-
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr ""
-
-#: actions/register.php:368
-#, fuzzy
-msgid "1-64 lowercase letters or numbers, "
-msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали"
-
-#: actions/register.php:382 actions/register.php:386
-#, fuzzy
-msgid "Used only for updates, announcements, "
-msgstr "Използва се само за промени, обяви или възстановяване на паролата"
-
-#: actions/register.php:398
-#, fuzzy
-msgid "URL of your homepage, blog, "
-msgstr "Адрес на личната ви страница, блог или профил в друг сайт"
-
-#: actions/register.php:404
-#, fuzzy
-msgid "Describe yourself and your "
-msgstr "Опишете себе си и интересите си в до 140 букви"
-
-#: actions/register.php:410
-#, fuzzy
-msgid "Where you are, like \"City, "
-msgstr "Къде се намирате (град, община, държава и т.н.)"
-
-#: actions/register.php:432
-#, fuzzy
-msgid " except this private data: password, "
-msgstr "освен тези лични данни: парола, е-поща, месинджър, телефон."
-
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. "
-
-#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr ""
-
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
#: actions/replies.php:127
#, php-format
msgid "Replies to %s, page %d"
msgstr "Отговори на %s, страница %d"
-#: actions/showfavorites.php:79
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/replies.php:158
+#, fuzzy, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/replies.php:198
#, php-format
-msgid "%s favorite notices, page %d"
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
+msgstr ""
+
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "Съобщение до %1$s в %2$s"
+
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
msgstr "Любими бележки на %s, страница %d"
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr "Грешка при изтегляне на любимите бележки"
+
+#: actions/showfavorites.php:170
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/showfavorites.php:177
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/showfavorites.php:184
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Емисия с приятелите на %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
#, php-format
msgid "%s group"
msgstr ""
-#: actions/showgroup.php:79 actions/showgroup.php:84
+#: actions/showgroup.php:84
#, php-format
msgid "%s group, page %d"
msgstr ""
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
+#: actions/showgroup.php:218
msgid "Group profile"
msgstr "Профил на групата"
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
msgid "URL"
msgstr ""
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
#, fuzzy
msgid "Note"
msgstr "Бележки"
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
msgid "Group actions"
msgstr ""
-#: actions/showgroup.php:323 actions/showgroup.php:304
+#: actions/showgroup.php:328
#, fuzzy, php-format
-msgid "Notice feed for %s group"
+msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Емисия с бележки на %s"
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
+#: actions/showgroup.php:334
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/showgroup.php:340
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/showgroup.php:345
+#, php-format
+msgid "FOAF for %s group"
+msgstr "Изходяща кутия за %s"
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
msgid "Members"
msgstr "Членове"
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
msgid "(None)"
msgstr ""
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
+#: actions/showgroup.php:392
msgid "All members"
msgstr "Всички членове"
-#: actions/showgroup.php:378
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr "Статистики"
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Създаване"
+
+#: actions/showgroup.php:448
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
+#: actions/showgroup.php:454
+#, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
+msgstr ""
+
+#: actions/showgroup.php:482
+msgid "Admins"
+msgstr ""
+
+#: actions/showmessage.php:81
+msgid "No such message."
+msgstr "Няма такова съобщение"
+
#: actions/showmessage.php:98
-#, fuzzy
-msgid "Only the sender and recipient "
+msgid "Only the sender and recipient may read this message."
msgstr "Само подателят и получателят могат да четат това съобщение."
-#: actions/showstream.php:73 actions/showstream.php:78
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "Съобщение до %1$s в %2$s"
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "Съобщение от %1$s в %2$s"
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Бележки"
+
+#: actions/showstream.php:73
+#, fuzzy, php-format
+msgid " tagged %s"
+msgstr "Бележки с етикет %s"
+
#: actions/showstream.php:79
#, php-format
msgid "%s, page %d"
msgstr "%s, страница %d"
+#: actions/showstream.php:122
+#, fuzzy, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/showstream.php:129
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Емисия с бележки на %s"
+
#: actions/showstream.php:143
-#, fuzzy
-msgid "'s profile"
-msgstr "Профил на "
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Емисия с бележки на %s"
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-msgid "User profile"
-msgstr "Потребителски профил"
+#: actions/showstream.php:148
+#, fuzzy, php-format
+msgid "FOAF for %s"
+msgstr "Изходяща кутия за %s"
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
-msgstr "Снимка"
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
+msgstr ""
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
-msgstr "Потребителски действия"
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
-msgstr "Изпращате на пряко съобщение до този потребител."
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
-msgstr "Съобщение"
-
-#: actions/showstream.php:451 lib/profileaction.php:157
-msgid "All subscribers"
-msgstr "Всички абонати"
-
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr "Всички групи"
-
-#: actions/showstream.php:542
+#: actions/showstream.php:234
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/smssettings.php:128
-#, fuzzy
-msgid "Phone number, no punctuation or spaces, "
-msgstr "Телефонен номер — с код, без пунктоация и без интервали."
+#: actions/showstream.php:239
+#, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
+msgstr ""
-#: actions/smssettings.php:162
-#, fuzzy
-msgid "Send me notices through SMS; "
-msgstr "Изпращане на бележките по Jabber/GTalk."
+#: actions/smssettings.php:58
+msgid "SMS Settings"
+msgstr "Настройки за SMS"
-#: actions/smssettings.php:335
+#: actions/smssettings.php:69
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%."
+
+#: actions/smssettings.php:91
#, fuzzy
-msgid "A confirmation code was sent to the phone number you added. "
+msgid "SMS is not available."
+msgstr "Страницата не е достъпна във вида медия, който приемате"
+
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "Текущ потвърден телефонен номер за SMS-и."
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
msgstr "Очаква се потвърждение за този телефонен номер."
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr "Код за потвърждение"
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr "Въведете кода, който получихте по телефона."
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr "Телефонен номер за SMS"
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "Телефонен номер — с код, без пунктоация и без интервали."
+
+#: actions/smssettings.php:174
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни "
+"такси от оператора."
+
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr "Не е въведен телефонен номер."
+
+#: actions/smssettings.php:311
+msgid "No carrier selected."
+msgstr "Не е избран оператор."
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr "Това и сега е номерът на телефона ви."
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr "Този телефонен номер вече се използва от друг потребител."
+
+#: actions/smssettings.php:347
+#, fuzzy
+msgid ""
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
+msgstr ""
+"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. "
+"Проверете съобщенията (или папката за спам) за кода и указанията за "
+"използването му."
+
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr "Този код за потвърждение е грешен."
+
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr "Това не е вашият телефонен номер."
+
+#: actions/smssettings.php:465
msgid "Mobile carrier"
msgstr "Мобилен оператор"
+#: actions/smssettings.php:469
+msgid "Select a carrier"
+msgstr "Изберете оператор"
+
+#: actions/smssettings.php:476
+#, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който "
+"не фигурира тук, пишете ни на адрес %s."
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr "Не е въведен код."
+
#: actions/subedit.php:70
msgid "You are not subscribed to that profile."
msgstr "Не сте абонирани за този профил"
@@ -5001,1743 +2956,14 @@ msgid "%s subscribers, page %d"
msgstr ""
#: actions/subscribers.php:63
-#, fuzzy
-msgid "These are the people who listen to "
-msgstr "Това са хората, които четат бележките на %s."
+msgid "These are the people who listen to your notices."
+msgstr "Tова са хората, които четат бележките ви."
#: actions/subscribers.php:67
-#, fuzzy, php-format
-msgid "These are the people who "
+#, php-format
+msgid "These are the people who listen to %s's notices."
msgstr "Това са хората, които четат бележките на %s."
-#: actions/subscriptions.php:52
-#, php-format
-msgid "%s subscriptions"
-msgstr "Абонаменти на %s"
-
-#: actions/subscriptions.php:54
-#, php-format
-msgid "%s subscriptions, page %d"
-msgstr "Абонаменти на %s, страница %d"
-
-#: actions/subscriptions.php:65
-#, fuzzy
-msgid "These are the people whose notices "
-msgstr "Хора, чийто бележки %s чете."
-
-#: actions/subscriptions.php:69
-#, fuzzy, php-format
-msgid "These are the people whose "
-msgstr "Това са хората, които четат бележките на %s."
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-msgid "Jabber"
-msgstr "Jabber"
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr "Бележки с етикет %s, страница %d"
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr ""
-
-#: actions/tagother.php:33
-#, fuzzy
-msgid "Not logged in"
-msgstr "Не сте влезли в системата."
-
-#: actions/tagother.php:39
-#, fuzzy
-msgid "No id argument."
-msgstr "Няма такъв документ."
-
-#: actions/tagother.php:65
-#, fuzzy, php-format
-msgid "Tag %s"
-msgstr "Етикети"
-
-#: actions/tagother.php:141
-#, fuzzy
-msgid "Tag user"
-msgstr "Етикети"
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr "Имаше проблем със сесията ви в сайта."
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-
-#: actions/tagother.php:198 actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Грешка при запазване на етикетите."
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr ""
-
-#: actions/tagrss.php:35
-msgid "No such tag."
-msgstr "Няма такъв етикет."
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Microblog tagged with %s"
-msgstr "Бележки с етикет %s"
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr ""
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr ""
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-msgid "Not found."
-msgstr "Не е открито."
-
-#: actions/twittersettings.php:71
-#, fuzzy
-msgid "Add your Twitter account to automatically send "
-msgstr ""
-"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и "
-"там."
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr "Име в Twitter"
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-msgid "Twitter password"
-msgstr "Парола за Twitter"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr "Приятели от Twitter"
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr ""
-
-#: actions/twittersettings.php:341
-#, fuzzy, php-format
-msgid "Unable to retrieve account information "
-msgstr "Грешка при извличане данните на профила \"%s\" от Twitter."
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-#, fuzzy
-msgid "Error removing the block."
-msgstr "Грешка при запазване на потребител."
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-#, fuzzy
-msgid "No profile id in request."
-msgstr "Сървърът не е върнал адрес на профила."
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-#, fuzzy
-msgid "No profile with that id."
-msgstr "Не е открита бележка с такъв идентификатор."
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-#, fuzzy
-msgid "Unsubscribed"
-msgstr "Отписване"
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr "Групи на %s"
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr "Групи на %s, страница %d"
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-msgid "Problem saving notice. Unknown user."
-msgstr "Грешка при записване на бележката. Непознат потребител."
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
-"отново след няколко минути."
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr "Забранено ви е да публикувате бележки в този сайт."
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-msgid "Upload an avatar"
-msgstr "Качване на аватар"
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr "Друго"
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr "Други настройки"
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, fuzzy, php-format
-msgid "%s - %s"
-msgstr "%s (%s)"
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr "Неозаглавена страница"
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr ""
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr ""
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr "Търсене за хора или бележки"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Account"
-msgstr "Сметка"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr "Промяна на поща, аватар, парола, профил"
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr "Свързване към моментни съобщения, SMS, Twitter"
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr "Излизане от сайта"
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr "Влизане в сайта"
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-msgid "Create an account"
-msgstr "Създаване на нова сметка"
-
-#: lib/action.php:341 lib/action.php:418
-msgid "Login with OpenID"
-msgstr "Влизане с OpenID"
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-#, fuzzy
-msgid "Help me!"
-msgstr "Помощ"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-#, fuzzy
-msgid "Site notice"
-msgstr "Нова бележка"
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr ""
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-#, fuzzy
-msgid "Page notice"
-msgstr "Нова бележка"
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-#, fuzzy
-msgid "Secondary site navigation"
-msgstr "Абонаменти"
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr "Лиценз на програмата StatusNet"
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-msgid "All "
-msgstr "Всички "
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-msgid "license."
-msgstr "лиценз."
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block this user"
-msgstr "Блокиране на потребителя"
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr "Блокиране"
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-#, fuzzy
-msgid "Disfavor this notice"
-msgstr "%s любими бележки"
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-#, fuzzy
-msgid " a new account."
-msgstr "Създаване на нова сметка"
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-msgid "Published"
-msgstr "Публикувано"
-
-#: lib/favorform.php:114 lib/favorform.php:140
-msgid "Favor this notice"
-msgstr "Отбелязване като любимо"
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr "Изнасяне на данните"
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr "Филтриране на етикетите"
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr "Всички"
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr "Етикет"
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-msgid "Choose a tag to narrow list"
-msgstr "Изберете етикет за конкретизиране"
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-msgid "Go"
-msgstr ""
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-msgid "URL of the homepage or blog of the group or topic"
-msgstr "Адрес на страница, блог или профил в друг сайт на групата"
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-msgid "Description"
-msgstr "Описание"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-msgid "Describe the group or topic in 140 chars"
-msgstr "Опишете групата или темата й в до 140 букви"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr ""
-"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)"
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr "Група"
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-msgid "Admin"
-msgstr ""
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, php-format
-msgid "Edit %s group properties"
-msgstr "Редактиране настройките на групата %s"
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-msgid "Logo"
-msgstr "Лого"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, php-format
-msgid "Add or edit %s logo"
-msgstr "Добавяне или редактиране логото на %s"
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr "Групи с най-много членове"
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr "Групи с най-много бележки"
-
-#: lib/grouptagcloudsection.php:56
-#, php-format
-msgid "Tags in %s group's notices"
-msgstr "Етикети в бележките към групата %s"
-
-#: lib/htmloutputter.php:104
-#, fuzzy
-msgid "This page is not available in a "
-msgstr "Страницата не е достъпна във вида медия, който приемате"
-
-#: lib/joinform.php:114
-msgid "Join"
-msgstr "Присъединяване"
-
-#: lib/leaveform.php:114
-msgid "Leave"
-msgstr "Напускане"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-msgid "Login with a username and password"
-msgstr "Вход с име и парола"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-msgid "Sign up for a new account"
-msgstr "Създаване на нова сметка"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr "Вход или записване с OpenID"
-
-#: lib/mail.php:175
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-"Здрасти, %s!\n"
-"\n"
-
-#: lib/mail.php:236
-#, fuzzy, php-format
-msgid "%1$s is now listening to "
-msgstr "%1$s вече получава бележките ви в %2$s."
-
-#: lib/mail.php:254 lib/mail.php:253
-#, php-format
-msgid "Location: %s\n"
-msgstr "Местоположение: %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, php-format
-msgid "Homepage: %s\n"
-msgstr "Лична страница: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-"Биография: %s\n"
-"\n"
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr "Побутнати сте от %s"
-
-#: lib/mail.php:465
-#, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr "%1$s (%2$s) се чуди с какво се занимавате напоследък "
-
-#: lib/mail.php:555
-#, fuzzy, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s."
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-msgid "From"
-msgstr "От"
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-msgid "Send a direct notice"
-msgstr "Изпращане на пряко съобщеие"
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-msgid "Send a notice"
-msgstr "Изпращане на бележка"
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-msgid "Available characters"
-msgstr "Налични знаци"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-msgid "in reply to"
-msgstr "в отговор на"
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-msgid "Reply to this notice"
-msgstr "Отговаряне на тази бележка"
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-msgid "Reply"
-msgstr "Отговор"
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-msgid "Delete this notice"
-msgstr "Изтриване на бележката"
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-msgid "Delete"
-msgstr "Изтриване"
-
-#: lib/nudgeform.php:116
-msgid "Nudge this user"
-msgstr "Побутване на този потребител"
-
-#: lib/nudgeform.php:128
-msgid "Nudge"
-msgstr "Побутване"
-
-#: lib/nudgeform.php:128
-msgid "Send a nudge to this user"
-msgstr "Побутване на този потребител"
-
-#: lib/personaltagcloudsection.php:56
-#, php-format
-msgid "Tags in %s's notices"
-msgstr "Етикети в бележките на %s"
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-msgid "(none)"
-msgstr "(няма)"
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Общ поток"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr ""
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr "Скорошни етикети"
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr "Избрано"
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-msgid "Popular"
-msgstr "Популярно"
-
-#: lib/searchgroupnav.php:82
-msgid "Notice"
-msgstr "Бележки"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr "Търсене на групи в сайта"
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr "Неозаглавен раздел"
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, php-format
-msgid "People %s subscribes to"
-msgstr "Абонаменти на %s"
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, php-format
-msgid "People subscribed to %s"
-msgstr "Абонирани за %s"
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, php-format
-msgid "Groups %s is a member of"
-msgstr "Групи, в които участва %s"
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
-
-#: lib/subs.php:53 lib/subs.php:52
-msgid "User has blocked you."
-msgstr "Потребителят ви е блокирал."
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-msgid "Subscribe to this user"
-msgstr "Абониране за този потребител"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr "Без"
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr "Най-често пишещи"
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-msgid "Unblock this user"
-msgstr "Разблокиране на този потребител"
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr "Разблокиране"
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr "Отписване от този потребител"
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s и приятели"
-
-#: actions/avatarsettings.php:78
-#, fuzzy, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr "Можете да качите личен аватар тук."
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Аватарът е обновен."
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-#, fuzzy
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо."
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-#, fuzzy
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-#, fuzzy
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr "Изпращане на писмо при ново лично съобщение."
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, fuzzy, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr "Може да качите лого за групата ви."
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-#, fuzzy
-msgid "Pick a square area of the image to be the logo."
-msgstr "Изберете квадратна област от изображението за аватар"
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, fuzzy, php-format
-msgid "Microblog by %s group"
-msgstr "Микроблог на %s"
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Търсене на хора в %%site.name%% по техните име, място или интереси. "
-"Отделяйте фразите за "
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-#, fuzzy
-msgid "Only logged-in users can send direct messages."
-msgstr "Грешка при изпращане на прякото съобщение"
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr " Търсене на \"%s\" в потока"
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr ""
-"За по-голяма сигурност, моля въведете отново потребителското си име и парола "
-"при промяна на настройките."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-#, fuzzy
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr "Емисия на общия поток"
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-#, fuzzy
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr "Емисия на общия поток"
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Емисия на общия поток"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Създаване"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Профил на групата"
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "Профил на "
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, fuzzy, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, fuzzy, php-format
-msgid "FOAF for %s"
-msgstr "Изходяща кутия за %s"
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-#, fuzzy
-msgid "Edit Avatar"
-msgstr "Аватар"
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Настройки на профила"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr ""
-"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. "
-"Проверете съобщенията (или папката за спам) за кода и указанията за "
-"използването му."
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "Няма такъв потребител"
-
-#: actions/twittersettings.php:72
-#, fuzzy
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и "
-"там."
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, fuzzy, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr "Грешка при извличане данните на профила \"%s\" от Twitter."
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-"Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
-"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-#, fuzzy
-msgid "Search for more groups"
-msgstr "Търсене за хора или бележки"
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-#, fuzzy
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
-"отново след няколко минути."
-
-#: lib/action.php:406 lib/action.php:425
-#, fuzzy
-msgid "Connect to SMS, Twitter"
-msgstr "Свързване към моментни съобщения, SMS, Twitter"
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-#, fuzzy
-msgid "Badge"
-msgstr "Побутване"
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr ""
-"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си "
-"име и парола."
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, fuzzy, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-"%1$s вече получава бележките ви в %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"С уважение,\n"
-"%4$s.\n"
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-#, fuzzy
-msgid "Search site"
-msgstr "Търсене"
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-#, fuzzy
-msgid "No such attachment."
-msgstr "Няма такъв документ."
-
-#: actions/block.php:149
-#, fuzzy
-msgid "Do not block this user from this group"
-msgstr "Списък с потребителите в тази група."
-
-#: actions/block.php:150
-#, fuzzy
-msgid "Block this user from this group"
-msgstr "Списък с потребителите в тази група."
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "Потребителски профил"
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s и приятели, страница %d"
-
-#: actions/blockedfromgroup.php:108
-#, fuzzy
-msgid "A list of the users blocked from joining this group."
-msgstr "Списък с потребителите в тази група."
-
-#: actions/blockedfromgroup.php:281
-#, fuzzy
-msgid "Unblock user from group"
-msgstr "Разблокиране на този потребител"
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Код за потвърждение"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "Грешка при изтриване на бележката."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, fuzzy, php-format
-msgid "Invalid alias: \"%s\""
-msgstr "Неправилен етикет: \"%s\""
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Опитайте друг псевдоним, този вече е зает."
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "Грешка при отбелязване като любима."
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "Нова бележка"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "Нова бележка"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-#, fuzzy
-msgid "Not a valid invitation code."
-msgstr "Неправилен псевдоним."
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-#, fuzzy
-msgid "No group specified."
-msgstr "Не е указан профил."
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-#, fuzzy
-msgid "User is already blocked from group."
-msgstr "Потребителят ви е блокирал."
-
-#: actions/groupblock.php:100
-#, fuzzy
-msgid "User is not a member of group."
-msgstr "Не членувате в тази група."
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-#, fuzzy
-msgid "Block user from group"
-msgstr "Блокиране на потребителя"
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-#, fuzzy
-msgid "You must be logged in to edit a group."
-msgstr "За да създавате група, трябва да сте влезли."
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-#, fuzzy
-msgid "Group design"
-msgstr "Групи"
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Грешка при обновяване на потребителя."
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-#, fuzzy
-msgid "Unable to save your design settings!"
-msgstr "Грешка при записване настройките за Twitter"
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Настройките са запазени."
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-#, fuzzy
-msgid "Make user an admin of the group"
-msgstr "За да редактирате групата, трябва да сте й администратор."
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make Admin"
-msgstr ""
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-#, fuzzy
-msgid "No results."
-msgstr "Няма резултати"
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-#, fuzzy
-msgid "User is not blocked from group."
-msgstr "Потребителят ви е блокирал."
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-#, fuzzy
-msgid "Message sent"
-msgstr "Съобщение"
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "Грешка при запазване на профила."
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, fuzzy, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и "
-"същ акаунт. От тук се управляват съответните OpenID."
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-#, fuzzy
-msgid "View profile designs"
-msgstr "Настройки на профила"
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Ако сте забравили или загубили паролата си, може да получите нова на е-"
-"пощата, въведена в профила ви."
-
-#: actions/recoverpassword.php:158
-#, fuzzy
-msgid "You've been identified. Enter a new password below. "
-msgstr "Разпознати сте. Въведете паролата си по-долу. "
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Поискано е възстановяване на парола"
-
-#: actions/register.php:86 actions/register.php:92
-#, fuzzy
-msgid "Sorry, invalid invitation code."
-msgstr "Грешка в кода за потвърждение."
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Абониране за този потребител"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "Любими бележки на %s, страница %d"
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, fuzzy, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-msgid "Admins"
-msgstr ""
-
-#: actions/shownotice.php:101
-#, fuzzy
-msgid "Not a local notice"
-msgstr "Няма такъв потребител"
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, fuzzy, php-format
-msgid " tagged %s"
-msgstr "Бележки с етикет %s"
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, fuzzy, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
-msgstr ""
-
#: actions/subscribers.php:108
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -6756,7 +2982,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, php-format
+msgid "%s subscriptions"
+msgstr "Абонаменти на %s"
+
+#: actions/subscriptions.php:54
+#, php-format
+msgid "%s subscriptions, page %d"
+msgstr "Абонаменти на %s, страница %d"
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr "Няма хора, чийто бележки четете."
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "Хора, чийто бележки %s чете."
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6766,73 +3011,222 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s вече получава бележките ви в %2$s."
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+msgid "Jabber"
+msgstr "Jabber"
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr "SMS"
+
+#: actions/tagother.php:33
+#, fuzzy
+msgid "Not logged in"
+msgstr "Не сте влезли в системата."
+
+#: actions/tagother.php:39
+#, fuzzy
+msgid "No id argument."
+msgstr "Няма такъв документ."
+
+#: actions/tagother.php:65
+#, fuzzy, php-format
+msgid "Tag %s"
+msgstr "Етикети"
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+msgid "User profile"
+msgstr "Потребителски профил"
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr "Снимка"
+
+#: actions/tagother.php:141
+#, fuzzy
+msgid "Tag user"
+msgstr "Етикети"
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+
+#: actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Грешка при запазване на етикетите."
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr ""
+
+#: actions/tag.php:68
+#, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr "Бележки с етикет %s, страница %d"
+
+#: actions/tag.php:86
#, fuzzy, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr "Емисия с бележки на %s"
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Емисия с бележки на %s"
+
+#: actions/tag.php:98
#, fuzzy, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr "Емисия с бележки на %s"
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
+#: actions/tagrss.php:35
+msgid "No such tag."
+msgstr "Няма такъв етикет."
+
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
+msgstr "Методът в API все още се разработва."
+
+#: actions/unsubscribe.php:77
#, fuzzy
-msgid "This status is already a favorite!"
-msgstr "Тази бележка вече е отбелязана като любима!"
+msgid "No profile id in request."
+msgstr "Сървърът не е върнал адрес на профила."
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
+#: actions/unsubscribe.php:84
#, fuzzy
-msgid "That status is not a favorite!"
-msgstr "Тази бележка не е отбелязана като любима!"
+msgid "No profile with that id."
+msgstr "Не е открита бележка с такъв идентификатор."
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
+#: actions/unsubscribe.php:98
#, fuzzy
-msgid "Could not determine source user."
-msgstr "Грешка при изтегляне на общия поток"
+msgid "Unsubscribed"
+msgstr "Отписване"
-#: actions/twitapifriendships.php:215
-#, fuzzy
-msgid "Target user not specified."
-msgstr "Не е указан получател."
-
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
-#, fuzzy
-msgid "Could not find target user."
-msgstr "Не са открити бележки."
-
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
-#, fuzzy, php-format
-msgid "%1$s / Updates mentioning %2$s"
-msgstr "%1$s / Реплики на %2$s"
-
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Updates tagged with %1$s on %2$s!"
-msgstr "Бележки от %1$s в %2$s."
-
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#, php-format
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Одобряване на абонамента"
+
+#: actions/userauthorization.php:110
+#, fuzzy
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
+msgstr ""
+"Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
+"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
+
+#: actions/userauthorization.php:188
#, fuzzy
msgid "License"
msgstr "лиценз."
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Приемане"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Абониране за този потребител"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr "Охвърляне"
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "Абонаменти на %s"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr "Няма заявка за одобрение."
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr "Абонаментът е одобрен"
+
+#: actions/userauthorization.php:249
+#, fuzzy
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+"Абонаментът е одобрен, но не е зададен callback URL. За да завършите "
+"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:"
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr "Абонаментът е отказан"
+
+#: actions/userauthorization.php:261
+#, fuzzy
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно "
+"абонамента, проверете инструкциите на сайта."
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, fuzzy, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "Грешка при четене адреса на аватара '%s'"
+
+#: actions/userauthorization.php:348
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "Грешен вид изображение за '%s'"
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr "Няма id."
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
#, fuzzy
msgid "Profile design"
@@ -6848,6 +3242,16 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr "Групи на %s, страница %d"
+
+#: actions/usergroups.php:130
+#, fuzzy
+msgid "Search for more groups"
+msgstr "Търсене за хора или бележки"
+
#: actions/usergroups.php:153
#, fuzzy, php-format
msgid "%s is not a member of any group."
@@ -6858,48 +3262,302 @@ msgstr "Не членувате в тази група."
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr "Грешка при вмъкване на съобщението."
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr "Грешка при обновяване на бележката с нов URL-адрес."
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr ""
+
+#: classes/Notice.php:179
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Проблем при записване на бележката."
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+msgid "Problem saving notice. Unknown user."
+msgstr "Грешка при записване на бележката. Непознат потребител."
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
+"отново след няколко минути."
+
+#: classes/Notice.php:194
+#, fuzzy
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
+"отново след няколко минути."
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr "Забранено ви е да публикувате бележки в този сайт."
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr "Проблем при записване на бележката."
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
+
#: classes/User.php:333
#, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr "Съобщение до %1$s в %2$s"
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr "Профил"
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr "Промяна настройките на профила"
+
+#: lib/accountsettingsaction.php:112
+msgid "Upload an avatar"
+msgstr "Качване на аватар"
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr "Смяна на паролата"
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr "Промяна обработката на писмата"
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "Потребителски профил"
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr "Друго"
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr "Други настройки"
+
+#: lib/action.php:144
+#, fuzzy, php-format
+msgid "%s - %s"
+msgstr "%s (%s)"
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr "Неозаглавена страница"
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr ""
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Начало"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr ""
+
+#: lib/action.php:432
+msgid "Account"
+msgstr "Сметка"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr "Промяна на поща, аватар, парола, профил"
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Свързване"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "Грешка при пренасочване към сървър: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr "Покани"
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Изход"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr "Излизане от сайта"
+
+#: lib/action.php:450
+msgid "Create an account"
+msgstr "Създаване на нова сметка"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr "Влизане в сайта"
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Помощ"
+
+#: lib/action.php:456
+#, fuzzy
+msgid "Help me!"
+msgstr "Помощ"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr "Търсене"
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr "Търсене за хора или бележки"
+
+#: lib/action.php:480
+#, fuzzy
+msgid "Site notice"
+msgstr "Нова бележка"
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr ""
+
+#: lib/action.php:612
+#, fuzzy
+msgid "Page notice"
+msgstr "Нова бележка"
+
+#: lib/action.php:714
+#, fuzzy
+msgid "Secondary site navigation"
+msgstr "Абонаменти"
+
+#: lib/action.php:721
+msgid "About"
+msgstr "Относно"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "Въпроси"
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr "Поверителност"
+
+#: lib/action.php:732
+msgid "Source"
+msgstr "Изходен код"
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Контакт"
+
+#: lib/action.php:736
+#, fuzzy
+msgid "Badge"
+msgstr "Побутване"
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr "Лиценз на програмата StatusNet"
+
+#: lib/action.php:767
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+
+#: lib/action.php:769
+#, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr "**%%site.name%%** е услуга за микроблогване. "
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, "
+"достъпна под [GNU Affero General Public License](http://www.fsf.org/"
+"licensing/licenses/agpl-3.0.html)."
+
+#: lib/action.php:785
+#, fuzzy
+msgid "Site content license"
+msgstr "Лиценз на програмата StatusNet"
+
+#: lib/action.php:794
+msgid "All "
+msgstr "Всички "
+
+#: lib/action.php:799
+msgid "license."
+msgstr "лиценз."
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr "Страниране"
+
+#: lib/action.php:1062
+msgid "After"
+msgstr "След"
+
+#: lib/action.php:1070
+msgid "Before"
+msgstr "Преди"
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr "Имаше проблем със сесията ви в сайта."
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6921,6 +3579,225 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr "Резултат от командата"
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr "Командата е изпълнена"
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr "Грешка при изпълнение на командата"
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr "За съжаление тази команда все още не се поддържа."
+
+#: lib/command.php:88
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "Грешка при обновяване на потребител с потвърден email адрес."
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, fuzzy, php-format
+msgid "Nudge sent to %s"
+msgstr "Побутването е изпратено"
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr "Потребителят няма последна бележка"
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr "Бележката е отбелязана като любима."
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr "Пълно име: %s"
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr "Местоположение: %s"
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr "Домашна страница: %s"
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr "Относно: %s"
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, fuzzy, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr ""
+"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d."
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr "Грешка при изпращане на прякото съобщение"
+
+#: lib/command.php:431
+#, fuzzy, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr ""
+"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d."
+
+#: lib/command.php:439
+#, fuzzy, php-format
+msgid "Reply to %s sent"
+msgstr "Отговаряне на тази бележка"
+
+#: lib/command.php:441
+#, fuzzy
+msgid "Error saving notice."
+msgstr "Проблем при записване на бележката."
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr "Уточнете името на потребителя, за когото се абонирате."
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr "Абонирани сте за %s."
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr "Уточнете името на потребителя, от когото се отписвате."
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr "Отписани сте от %s."
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr "Командата все още не се поддържа."
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr "Уведомлението е изключено."
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr "Грешка при изключване на уведомлението."
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr "Уведомлението е включено."
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr "Грешка при включване на уведомлението."
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "Грешка при създаване на OpenID форма: %s"
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "Няма код за потвърждение."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+#, fuzzy
+msgid "Go to the installer."
+msgstr "Влизане в сайта"
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr "IM"
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr "Бележки през месинджър (IM)"
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr "Бележки през SMS"
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -6970,6 +3847,10 @@ msgstr "Свързване"
msgid "Sidebar"
msgstr "Търсене"
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr "Текст"
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -6991,573 +3872,76 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
-msgstr ""
-
-#: lib/groupnav.php:100
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
#, fuzzy
-msgid "Blocked"
-msgstr "Блокиране"
+msgid "Disfavor this notice"
+msgstr "%s любими бележки"
-#: lib/groupnav.php:101
-#, fuzzy, php-format
-msgid "%s blocked users"
-msgstr "Блокиране на потребителя"
+#: lib/favorform.php:114 lib/favorform.php:140
+msgid "Favor this notice"
+msgstr "Отбелязване като любимо"
-#: lib/groupnav.php:119
-#, fuzzy, php-format
-msgid "Add or edit %s design"
-msgstr "Добавяне или редактиране логото на %s"
+#: lib/favorform.php:140
+msgid "Favor"
+msgstr "Любимо"
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
+#: lib/feedlist.php:64
+msgid "Export data"
+msgstr "Изнасяне на данните"
+
+#: lib/feed.php:85
+msgid "RSS 1.0"
msgstr ""
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
+#: lib/feed.php:87
+msgid "RSS 2.0"
msgstr ""
-#: lib/mail.php:648
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
+#: lib/feed.php:89
+msgid "Atom"
msgstr ""
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
+#: lib/feed.php:91
+msgid "FOAF"
msgstr ""
-#: lib/mail.php:685
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
-msgstr ""
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr "Филтриране на етикетите"
-#: lib/mailbox.php:139
-msgid ""
-"You have no private messages. You can send private message to engage other "
-"users in conversation. People can send you messages for your eyes only."
-msgstr ""
-
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
-#, fuzzy
-msgid "in context"
-msgstr "Няма съдържание!"
-
-#: lib/profileaction.php:177
-#, fuzzy
-msgid "User ID"
-msgstr "Потребител"
-
-#: lib/searchaction.php:156 lib/searchaction.php:162
-#, fuzzy
-msgid "Search help"
-msgstr "Търсене"
-
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
-msgstr ""
-
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
-msgstr ""
-
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Адресът на личната страница не е правилен URL."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
-msgstr ""
-
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "Няма такъв етикет."
-
-#: actions/apidirectmessage.php:89
-#, fuzzy, php-format
-msgid "Direct messages from %s"
-msgstr "Преки съобщения до %s"
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Твърде дълго. Може да е най-много 140 знака."
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
-msgstr ""
-
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "Автобиографията е твърде дълга (до 140 символа)."
-
-#: actions/apigroupjoin.php:110
-#, fuzzy
-msgid "You are already a member of that group."
-msgstr "Вече членувате в тази група."
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: actions/apigroupleave.php:114
-#, fuzzy
-msgid "You are not a member of this group."
-msgstr "Не членувате в тази група."
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "Грешка при проследяване — потребителят не е намерен."
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "Групи на %s"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "Групи, в които участва %s"
-
-#: actions/apigrouplistall.php:94
-#, fuzzy, php-format
-msgid "groups on %s"
-msgstr "Търсене на групи в сайта"
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Аватарът е обновен."
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, fuzzy, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака."
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-#, fuzzy
-msgid "Unsupported format."
-msgstr "Форматът на файла с изображението не се поддържа."
-
-#: actions/bookmarklet.php:50
-#, fuzzy
-msgid "Post to "
-msgstr "Снимка"
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "Автобиографията е твърде дълга (до 140 символа)."
-
-#: actions/favoritesrss.php:115
-#, fuzzy, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr "Бележки от %1$s в %2$s."
-
-#: actions/finishremotesubscribe.php:80
-#, fuzzy
-msgid "User being listened to does not exist."
-msgstr "Потребителят, когото проследявате, не съществува. "
-
-#: actions/finishremotesubscribe.php:106
-#, fuzzy
-msgid "You are not authorized."
-msgstr "Забранено."
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп."
-
-#: actions/finishremotesubscribe.php:114
-#, fuzzy
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Непозната версия на протокола OMB."
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "Няма такава бележка."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Няма такава бележка."
-
-#: actions/grouprss.php:133
-#, fuzzy, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr "Бележки от %1$s в %2$s."
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "Страницата не е достъпна във вида медия, който приемате"
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) "
-"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). "
-
-#: actions/noticesearchrss.php:89
-#, fuzzy, php-format
-msgid "Updates with \"%s\""
-msgstr "Бележки от %1$s в %2$s."
-
-#: actions/noticesearchrss.php:91
-#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "Всички бележки, намерени с \"%s\""
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Свързване"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Опишете себе си и интересите си в до 140 букви"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Опишете себе си и интересите си в до 140 букви"
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Автобиографията е твърде дълга (до 140 символа)."
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-#, fuzzy
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr "Неправилен адрес на профил (няма YADIS документ)."
-
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "Не е получен token за одобрение."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/replies.php:158
-#, fuzzy, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/repliesrss.php:72
-#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr "Съобщение до %1$s в %2$s"
-
-#: actions/showfavorites.php:170
-#, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/showfavorites.php:177
-#, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/showfavorites.php:184
-#, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Емисия с приятелите на %s"
-
-#: actions/showfavorites.php:211
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
-msgstr ""
-
-#: actions/showgroup.php:345
-#, php-format
-msgid "FOAF for %s group"
-msgstr "Изходяща кутия за %s"
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Бележки"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "Страницата не е достъпна във вида медия, който приемате"
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Емисия с бележки на %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
-#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:110
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
-msgstr ""
-"Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
-"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
-
-#: actions/userauthorization.php:249
-#, fuzzy
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"Абонаментът е одобрен, но не е зададен callback URL. За да завършите "
-"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:"
-
-#: actions/userauthorization.php:261
-#, fuzzy
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно "
-"абонамента, проверете инструкциите на сайта."
-
-#: actions/userauthorization.php:296
-#, php-format
-msgid "Listener URI ‘%s’ not found here"
-msgstr ""
-
-#: actions/userauthorization.php:301
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:307
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:322
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:338
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:343
-#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Грешка при четене адреса на аватара '%s'"
-
-#: actions/userauthorization.php:348
-#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Грешен вид изображение за '%s'"
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "Грешка при пренасочване към сървър: %s"
-
-#: lib/action.php:785
-#, fuzzy
-msgid "Site content license"
-msgstr "Лиценз на програмата StatusNet"
-
-#: lib/command.php:88
-#, fuzzy, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "Грешка при обновяване на потребител с потвърден email адрес."
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, fuzzy, php-format
-msgid "Nudge sent to %s"
-msgstr "Побутването е изпратено"
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, fuzzy, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr ""
-"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d."
-
-#: lib/command.php:431
-#, fuzzy, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr ""
-"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d."
-
-#: lib/command.php:439
-#, fuzzy, php-format
-msgid "Reply to %s sent"
-msgstr "Отговаряне на тази бележка"
-
-#: lib/command.php:441
-#, fuzzy
-msgid "Error saving notice."
-msgstr "Проблем при записване на бележката."
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "Няма код за потвърждение."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-#, fuzzy
-msgid "Go to the installer."
-msgstr "Влизане в сайта"
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr "Всички"
#: lib/galleryaction.php:139
#, fuzzy
msgid "Select tag to filter"
msgstr "Изберете оператор"
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr "Етикет"
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr "Изберете етикет за конкретизиране"
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr ""
+
+#: lib/groupeditform.php:163
+msgid "URL of the homepage or blog of the group or topic"
+msgstr "Адрес на страница, блог или профил в друг сайт на групата"
+
#: lib/groupeditform.php:168
#, fuzzy
msgid "Describe the group or topic"
@@ -7568,11 +3952,275 @@ msgstr "Опишете групата или темата й в до 140 бук
msgid "Describe the group or topic in %d characters"
msgstr "Опишете групата или темата й в до 140 букви"
+#: lib/groupeditform.php:172
+msgid "Description"
+msgstr "Описание"
+
+#: lib/groupeditform.php:179
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr ""
+"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)"
+
+#: lib/groupeditform.php:187
+#, php-format
+msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+msgstr ""
+
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr "Група"
+
+#: lib/groupnav.php:100
+#, fuzzy
+msgid "Blocked"
+msgstr "Блокиране"
+
+#: lib/groupnav.php:101
+#, fuzzy, php-format
+msgid "%s blocked users"
+msgstr "Блокиране на потребителя"
+
+#: lib/groupnav.php:107
+#, php-format
+msgid "Edit %s group properties"
+msgstr "Редактиране настройките на групата %s"
+
+#: lib/groupnav.php:112
+msgid "Logo"
+msgstr "Лого"
+
+#: lib/groupnav.php:113
+#, php-format
+msgid "Add or edit %s logo"
+msgstr "Добавяне или редактиране логото на %s"
+
+#: lib/groupnav.php:119
+#, fuzzy, php-format
+msgid "Add or edit %s design"
+msgstr "Добавяне или редактиране логото на %s"
+
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Групи с най-много членове"
+
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Групи с най-много бележки"
+
+#: lib/grouptagcloudsection.php:56
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr "Етикети в бележките към групата %s"
+
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr "Страницата не е достъпна във вида медия, който приемате"
+
+#: lib/imagefile.php:75
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "Може да качите лого за групата ви."
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr "Частично качване на файла."
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr "Системна грешка при качване на файл."
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr "Файлът не е изображение или е повреден."
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr "Форматът на файла с изображението не се поддържа."
+
+#: lib/imagefile.php:118
+#, fuzzy
+msgid "Lost our file."
+msgstr "Няма такава бележка."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
+msgstr "Неподдържан вид файл"
+
#: lib/jabber.php:192
#, php-format
msgid "notice id: %s"
msgstr "Нова бележка"
+#: lib/joinform.php:114
+msgid "Join"
+msgstr "Присъединяване"
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "Напускане"
+
+#: lib/logingroupnav.php:80
+msgid "Login with a username and password"
+msgstr "Вход с име и парола"
+
+#: lib/logingroupnav.php:86
+msgid "Sign up for a new account"
+msgstr "Създаване на нова сметка"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
+msgstr "Само потребителят може да отваря собствената си кутия."
+
+#: lib/mailbox.php:139
+msgid ""
+"You have no private messages. You can send private message to engage other "
+"users in conversation. People can send you messages for your eyes only."
+msgstr ""
+
+#: lib/mailbox.php:227 lib/noticelist.php:424
+#, fuzzy
+msgid "from"
+msgstr " от "
+
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "Потвърждаване адреса на е-поща"
+
+#: lib/mail.php:174
+#, php-format
+msgid ""
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
+msgstr ""
+
+#: lib/mail.php:235
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr "%1$s вече получава бележките ви в %2$s."
+
+#: lib/mail.php:240
+#, fuzzy, php-format
+msgid ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
+msgstr ""
+"%1$s вече получава бележките ви в %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"С уважение,\n"
+"%4$s.\n"
+
+#: lib/mail.php:253
+#, php-format
+msgid "Location: %s\n"
+msgstr "Местоположение: %s\n"
+
+#: lib/mail.php:255
+#, php-format
+msgid "Homepage: %s\n"
+msgstr "Лична страница: %s\n"
+
+#: lib/mail.php:257
+#, php-format
+msgid ""
+"Bio: %s\n"
+"\n"
+msgstr ""
+"Биография: %s\n"
+"\n"
+
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr "Нов адрес на е-поща за публикщуване в %s"
+
+#: lib/mail.php:288
+#, php-format
+msgid ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+msgstr ""
+
+#: lib/mail.php:412
+#, php-format
+msgid "%s status"
+msgstr "Състояние на %s"
+
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr "Потвърждение за SMS"
+
+#: lib/mail.php:462
+#, php-format
+msgid "You've been nudged by %s"
+msgstr "Побутнати сте от %s"
+
+#: lib/mail.php:466
+#, php-format
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
+msgstr ""
+
+#: lib/mail.php:509
+#, php-format
+msgid "New private message from %s"
+msgstr "Ново лично съобщение от %s"
+
+#: lib/mail.php:513
+#, php-format
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
+msgstr ""
+
#: lib/mail.php:554
#, fuzzy, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7619,76 +4267,418 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr " от "
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
msgid "Could not determine file's mime-type!"
msgstr "Грешка при изтегляне на общия поток"
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr "Изпращане на пряко съобщеие"
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr "До"
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+msgid "Available characters"
+msgstr "Налични знаци"
+
+#: lib/noticeform.php:145
+msgid "Send a notice"
+msgstr "Изпращане на бележка"
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr "Какво става, %s?"
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+#, fuzzy
+msgid "in context"
+msgstr "Няма съдържание!"
+
+#: lib/noticelist.php:498
+msgid "Reply to this notice"
+msgstr "Отговаряне на тази бележка"
+
+#: lib/noticelist.php:499
+msgid "Reply"
+msgstr "Отговор"
+
+#: lib/nudgeform.php:116
+msgid "Nudge this user"
+msgstr "Побутване на този потребител"
+
+#: lib/nudgeform.php:128
+msgid "Nudge"
+msgstr "Побутване"
+
+#: lib/nudgeform.php:128
+msgid "Send a nudge to this user"
+msgstr "Побутване на този потребител"
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr "Грешка при вмъкване на нов профил"
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr "Грешка при вмъкване на аватар"
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr "Грешка при вмъкване на отдалечен профил"
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Изтриване на бележката"
-#: actions/login.php:110 actions/login.php:120
-#, fuzzy
-msgid "Invalid or expired token."
-msgstr "Невалидно съдържание на бележка"
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "Грешка при добавяне на нов абонамент."
-#: lib/command.php:597
-#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "Грешка при създаване на OpenID форма: %s"
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Лично"
-#: lib/command.php:602
+#: lib/personalgroupnav.php:104
+msgid "Replies"
+msgstr "Отговори"
+
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr "Любими"
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr "Потребител"
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr "Входящи"
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr "Получените от вас съобщения"
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr "Изходящи"
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr "Изпратените от вас съобщения"
+
+#: lib/personaltagcloudsection.php:56
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgid "Tags in %s's notices"
+msgstr "Етикети в бележките на %s"
+
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Абонаменти"
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "Всички абонаменти"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Абонати"
+
+#: lib/profileaction.php:157
+msgid "All subscribers"
+msgstr "Всички абонати"
+
+#: lib/profileaction.php:177
+#, fuzzy
+msgid "User ID"
+msgstr "Потребител"
+
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Участник от"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr "Всички групи"
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Общ поток"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
msgstr ""
-#: lib/imagefile.php:75
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Скорошни етикети"
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "Избрано"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Популярно"
+
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "Търсене"
+
+#: lib/searchaction.php:162
+#, fuzzy
+msgid "Search help"
+msgstr "Търсене"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr "Хора"
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr "Търсене на хора в сайта"
+
+#: lib/searchgroupnav.php:82
+msgid "Notice"
+msgstr "Бележки"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr "Търсене в съдържанието на бележките"
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr "Търсене на групи в сайта"
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr "Неозаглавен раздел"
+
+#: lib/section.php:106
+msgid "More..."
+msgstr ""
+
+#: lib/subgroupnav.php:83
+#, php-format
+msgid "People %s subscribes to"
+msgstr "Абонаменти на %s"
+
+#: lib/subgroupnav.php:91
+#, php-format
+msgid "People subscribed to %s"
+msgstr "Абонирани за %s"
+
+#: lib/subgroupnav.php:99
+#, php-format
+msgid "Groups %s is a member of"
+msgstr "Групи, в които участва %s"
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+msgid "(none)"
+msgstr "(няма)"
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+msgid "User has blocked you."
+msgstr "Потребителят ви е блокирал."
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr "Грешка при абониране."
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr "Грешка при абониране на друг потребител за вас."
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr "Не сте абонирани!"
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "Грешка при изтриване на абонамента."
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr "Без"
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Най-често пишещи"
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr "Отписване от този потребител"
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr "Отписване"
+
+#: lib/userprofile.php:116
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "Аватар"
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr "Потребителски действия"
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Настройки на профила"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr "Изпращате на пряко съобщение до този потребител."
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr "Съобщение"
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr "преди няколко секунди"
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr "преди около минута"
+
+#: lib/util.php:848
+#, php-format
+msgid "about %d minutes ago"
+msgstr "преди около %d минути"
+
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr "преди около час"
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr "преди около %d часа"
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr "преди около ден"
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr "преди около %d дни"
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr "преди около месец"
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr "преди около %d месеца"
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr "преди около година"
+
+#: lib/webcolor.php:82
#, fuzzy, php-format
-msgid "That file is too big. The maximum file size is %s."
-msgstr "Може да качите лого за групата ви."
+msgid "%s is not a valid color!"
+msgstr "Адресът на личната страница не е правилен URL."
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack - not yet implemented.\n"
-"track off - not yet implemented.\n"
-"untrack all - not yet implemented.\n"
-"tracks - not yet implemented.\n"
-"tracking - not yet implemented.\n"
+#: lib/webcolor.php:123
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex chars."
msgstr ""
+
+#: scripts/maildaemon.php:48
+msgid "Could not parse message."
+msgstr "Грешка при обработка на съобщението"
+
+#: scripts/maildaemon.php:53
+msgid "Not a registered user."
+msgstr "Това не е регистриран потребител."
+
+#: scripts/maildaemon.php:57
+msgid "Sorry, that is not your incoming email address."
+msgstr "Това не е вашият входящ адрес."
+
+#: scripts/maildaemon.php:61
+msgid "Sorry, no incoming email allowed."
+msgstr "Входящата поща не е разрешена."
diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo
index 86fd07da95..49b67a1983 100644
Binary files a/locale/ca/LC_MESSAGES/statusnet.mo and b/locale/ca/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po
index 82be16d89f..25a572c8ca 100644
--- a/locale/ca/LC_MESSAGES/statusnet.po
+++ b/locale/ca/LC_MESSAGES/statusnet.po
@@ -5,49 +5,1555 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:06+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:57:50+0000\n"
"Language-Team: Catalan\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
-#, php-format
-msgid " Search Stream for \"%s\""
-msgstr "Cerca \"%s\" al flux"
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "No existeix aquesta etiqueta."
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr "No existeix aquest usuari."
+
+#: actions/all.php:84
+#, php-format
+msgid "%s and friends, page %d"
+msgstr "%s i amics, pàgina %d"
+
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
+#, php-format
+msgid "%s and friends"
+msgstr "%s i amics"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Feed per a amics de %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Feed per a amics de %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Feed per a amics de %s"
+
+#: actions/all.php:127
+#, php-format
msgid ""
-" except this private data: password, email address, IM address, phone number."
+"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-"excepte les següents dades privades: contrasenya, adreça de correu "
-"electrònic, adreça de missatgeria instantània, número de telèfon."
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr " de "
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:132
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s i amics"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "Actualitzacions de %1$s i amics a %2$s!"
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr "No s'ha trobat el mètode API!"
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr "Aquest mètode requereix POST."
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr "L'usuari no té perfil."
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr "Ha fallat el bloqueig d'usuari."
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr "Ha fallat el desbloqueig d'usuari."
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr "No hi ha text al missatge!"
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "És massa llarg. Màxim del missatge és 140 caràcters."
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr "No has escrit cap usuari receptor."
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus."
+
+#: actions/apidirectmessage.php:89
+#, fuzzy, php-format
+msgid "Direct messages from %s"
+msgstr "Missatges directes a %s"
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "Tots els missatges directes enviats per %s"
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr "Missatges directes a %s"
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "Tots els missatges directes enviats a %s"
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr "No s'ha trobat cap estatus amb aquesta ID."
+
+#: actions/apifavoritecreate.php:119
+#, fuzzy
+msgid "This status is already a favorite!"
+msgstr "Aquesta nota ja és favorita."
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr "No es pot crear favorit."
+
+#: actions/apifavoritedestroy.php:122
+#, fuzzy
+msgid "That status is not a favorite!"
+msgstr "Aquesta notificació no és un favorit!"
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr "No pots eliminar favorits."
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix."
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr ""
+"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista."
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix."
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr "Dos ids d'usuari o screen_names has de ser substituïts."
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "No s'ha pogut recuperar la conversa pública."
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "No es pot trobar cap estatus."
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+msgid "Could not create group."
+msgstr "No s'ha pogut crear el grup."
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "No es pot crear favorit."
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+msgid "Could not set group membership."
+msgstr "No s'ha pogut establir la pertinença d'aquest grup."
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir "
+"espais."
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Aquest sobrenom ja existeix. Prova un altre. "
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr "Sobrenom no vàlid."
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr "La pàgina personal no és un URL vàlid."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "El teu nom és massa llarg (màx. 255 caràcters)."
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "la descripció és massa llarga (màx. 140 caràcters)."
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "La ubicació és massa llarga (màx. 255 caràcters)."
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "Etiqueta no vàlida: \"%s\""
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Aquest sobrenom ja existeix. Prova un altre. "
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "Ja ets membre d'aquest grup"
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "No s'ha pogut afegir l'usuari %s al grup %s"
+
+#: actions/apigroupleave.php:114
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "No ets membre d'aquest grup."
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr "%s grups"
+
+#: actions/apigrouplistall.php:94
+#, fuzzy, php-format
+msgid "groups on %s"
+msgstr "Accions del grup"
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "%s grups"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "%s grups són membres de"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr "Aquest mètode requereix POST o DELETE."
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr "No pots eliminar l'estatus d'un altre usuari."
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Avatar actualitzat."
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr "No s'ha trobat cap estatus amb la ID trobada."
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, fuzzy, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr "Massa llarg. La longitud màxima és de 140 caràcters."
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr "No s'ha trobat"
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+#, fuzzy
+msgid "Unsupported format."
+msgstr "Format d'imatge no suportat."
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr "%s / Favorits de %s"
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr "%s actualitzacions favorites per %s / %s."
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, php-format
+msgid "%s timeline"
+msgstr "%s línia temporal"
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr "Actualitzacions de %1$s a %2$s!"
+
+#: actions/apitimelinementions.php:116
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
msgstr "%1$s / Notificacions contestant a %2$s"
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s."
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "%s línia temporal pública"
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr "%s notificacions de tots!"
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "Aviso etiquetats amb %s"
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Actualitzacions de %1$s a %2$s!"
+
+#: actions/apiusershow.php:96
+msgid "Not found."
+msgstr "No s'ha trobat."
+
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "No existeix aquest document."
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr "Cap sobrenom."
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr "Cap mida."
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr "Mida invàlida."
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr "Avatar"
+
+#: actions/avatarsettings.php:78
+#, fuzzy, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr "Pots pujar el teu avatar personal."
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr "Usuari sense perfil coincident"
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+msgid "Avatar settings"
+msgstr "Configuració de l'avatar"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr "Original"
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr "Previsualitzar"
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+msgid "Delete"
+msgstr "Eliminar"
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr "Pujar"
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr "Crop"
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
+"us plau."
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr "Enviament de formulari inesperat."
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr ""
+"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu "
+"avatar."
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr "S'ha perdut el nostre fitxer de dades."
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr "Avatar actualitzat."
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr "Error en actualitzar avatar."
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Avatar actualitzat."
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+msgid "No nickname"
+msgstr "Cap sobrenom."
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+msgid "No such group"
+msgstr "No existeix tal grup"
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "Perfil de l'usuari"
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s i amics, pàgina %d"
+
+#: actions/blockedfromgroup.php:108
+#, fuzzy
+msgid "A list of the users blocked from joining this group."
+msgstr "La llista dels usuaris d'aquest grup."
+
+#: actions/blockedfromgroup.php:281
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "Ha fallat el desbloqueig d'usuari."
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr "Desbloquejar"
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+msgid "Unblock this user"
+msgstr "Desbloquejar aquest usuari"
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "No connectat."
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr "No s'ha especificat perfil."
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr "No hi ha cap perfil amb aquesta ID."
+
+#: actions/block.php:111 actions/block.php:134
+msgid "Block user"
+msgstr "Usuari bloquejat."
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr "No"
+
+#: actions/block.php:149
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "La llista dels usuaris d'aquest grup."
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr "Sí"
+
+#: actions/block.php:150
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "La llista dels usuaris d'aquest grup."
+
+#: actions/block.php:165
+msgid "You have already blocked this user."
+msgstr "Ja havies bloquejat aquest usuari."
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr "Error al guardar la informació del block."
+
+#: actions/bookmarklet.php:50
+#, fuzzy
+msgid "Post to "
+msgstr "Foto"
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr "Cap codi de confirmació."
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Codi de confirmació no trobat. "
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr "Aquest codi de confirmació no és per a tu!"
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr "Tipus d'adreça %s desconeguda"
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr "Aquesta adreça ja ha estat confirmada."
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "No s'ha pogut actualitzar l'usuari."
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "No s'ha pogut eliminar la confirmació de correu electrònic."
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Confirmar adreça"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte."
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Codi de confirmació"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr "Avisos"
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr "No existeix aquest avís."
+
+#: actions/deletenotice.php:71
+msgid "Can't delete this notice."
+msgstr "No es pot esborrar la notificació."
+
+#: actions/deletenotice.php:103
+#, fuzzy
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, "
+"no ho podràs desfer."
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr "Eliminar nota."
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr "N'estàs segur que vols eliminar aquesta notificació?"
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "No es pot esborrar la notificació."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+msgid "Delete this notice"
+msgstr "Eliminar aquesta nota"
+
+#: actions/deletenotice.php:157
+#, fuzzy
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
+"us plau."
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr "Aquesta notificació no és un favorit!"
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr "Afegir a favorits"
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr "No existeix aquest document."
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr "Editar el grup %s"
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr "Has d'haver entrat per crear un grup."
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr "Has de ser admin per editar aquest grup"
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr "Utilitza aquest formulari per editar el grup."
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "la descripció és massa llarga (màx. 140 caràcters)."
+
+#: actions/editgroup.php:253
+msgid "Could not update group."
+msgstr "No s'ha pogut actualitzar el grup."
+
+#: actions/editgroup.php:269
+msgid "Options saved."
+msgstr "Configuració guardada."
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr "Configuració del correu electrònic"
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "Gestionar com reps correus de %%site.name%%."
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Adreça"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr "Correu electrònic confirmat actualment."
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr "Eliminar"
+
+#: actions/emailsettings.php:113
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la "
+"carpeta de spam!) per al missatge amb les instruccions."
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Cancel·lar"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr "Direcció de correu electrònic"
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr "Correu electrònic, com Email address, like \"UserName@example.org\""
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Afegir"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr "Correu electrònic entrant"
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr ""
+"Enviar correu electrònic a aquesta direcció per publicar noves notificacions."
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic."
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr "Nou"
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Preferències"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr ""
+"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu "
+"electrònic."
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit."
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat."
+
+#: actions/emailsettings.php:174
+#, fuzzy
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat."
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic."
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr "Vull publicar notificacions per correu electrònic."
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr "Publica una MicroID per al meu correu electrònic."
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr "Guardar"
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Preferències guardades."
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr "No hi ha cap direcció de correu electrònic."
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr "No es pot normalitzar aquesta direcció de correu electrònic"
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr "No és una direcció de correu electrònic vàlida."
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr "Aquest ja és el teu correu electrònic."
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr "Aquest correu electrònic pertany a un altre usuari."
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "No s'ha pogut inserir el codi de confirmació."
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+"S'ha enviat un codi de confirmació al correu electrònic que has afegit. "
+"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest "
+"codi i les instruccions per utilitzar-lo."
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr "Cap confirmació pendent per a cancel·lar."
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr "Aquesta adreça de missatgeria instantània és incorrecta."
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Confirmació cancel·lada."
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr "Aquest no és el teu correu electrònic"
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr "L'adreça ha estat eliminada."
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr "No hi ha cap direcció de correu electrònic entrant."
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr "No s'ha pogut actualitzar el registre de l'usuari."
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr "Eliminat el correu electrònic entrant."
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr "Nou correu electrònic entrant afegit."
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "Notificacions populars"
+
+#: actions/favorited.php:67
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "Notificacions populars, pàgina %d"
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr "Les notificacions més populars en aquest lloc ara mateix."
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr "%s's notes favorites"
+
+#: actions/favoritesrss.php:115
+#, fuzzy, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Actualitzacions de %1$s a %2$s!"
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr "Aquesta nota ja és favorita."
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+msgid "Disfavor favorite"
+msgstr "Desfavoritar favorit"
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "Usuaris destacats"
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr "Usuaris destacats, pàgina %d"
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr "Una selecció d'alguns dels millors usuaris a %s"
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "Nou avís"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "Nou avís"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "Resposta inesperada!"
+
+#: actions/finishremotesubscribe.php:80
+#, fuzzy
+msgid "User being listened to does not exist."
+msgstr "L'usuari que vols seguir no existeix."
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr "Pots utilitzar la subscripció local!"
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr "Aquest usuari t'ha bloquejat com a subscriptor."
+
+#: actions/finishremotesubscribe.php:106
+#, fuzzy
+msgid "You are not authorized."
+msgstr "No autoritzat."
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés."
+
+#: actions/finishremotesubscribe.php:114
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "Versió desconeguda del protocol OMB."
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr "Error en actualitzar el perfil remot"
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+msgid "No such group."
+msgstr "No s'ha trobat el grup."
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "No existeix aquest avís."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Hem perdut el nostre arxiu."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+#, fuzzy
+msgid "No group specified."
+msgstr "No s'ha especificat perfil."
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+#, fuzzy
+msgid "User is already blocked from group."
+msgstr "Un usuari t'ha bloquejat."
+
+#: actions/groupblock.php:100
+#, fuzzy
+msgid "User is not a member of group."
+msgstr "No ets membre d'aquest grup."
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+#, fuzzy
+msgid "Block user from group"
+msgstr "Usuari bloquejat."
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr "No ID"
+
+#: actions/groupdesignsettings.php:68
+#, fuzzy
+msgid "You must be logged in to edit a group."
+msgstr "Has d'haver entrat per crear un grup."
+
+#: actions/groupdesignsettings.php:141
+#, fuzzy
+msgid "Group design"
+msgstr "Grups"
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "No s'ha pogut actualitzar l'usuari."
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#, fuzzy
+msgid "Unable to save your design settings!"
+msgstr "No s'ha pogut guardar la teva configuració de Twitter!"
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Preferències de sincronització guardades."
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr "Logo del grup"
+
+#: actions/grouplogo.php:150
+#, fuzzy, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr "Pots pujar una imatge de logo per al grup."
+
+#: actions/grouplogo.php:362
+#, fuzzy
+msgid "Pick a square area of the image to be the logo."
+msgstr ""
+"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu "
+"avatar."
+
+#: actions/grouplogo.php:396
+msgid "Logo updated."
+msgstr "Logo actualitzat."
+
+#: actions/grouplogo.php:398
+msgid "Failed updating logo."
+msgstr "Error en actualitzar logo."
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr "%s membre/s en el grup"
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr "%s membre/s en el grup, pàgina %d"
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr "La llista dels usuaris d'aquest grup."
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+msgid "Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr "Bloquejar"
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+msgid "Block this user"
+msgstr "Bloquejar aquest usuari"
+
+#: actions/groupmembers.php:441
+#, fuzzy
+msgid "Make user an admin of the group"
+msgstr "Has de ser admin per editar aquest grup"
+
+#: actions/groupmembers.php:473
+#, fuzzy
+msgid "Make Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, fuzzy, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Actualitzacions de %1$s a %2$s!"
+
+#: actions/groupsearch.php:52
+#, fuzzy, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes "
+"de cerca amb espais; han de ser majors a 3 caràcters."
+
+#: actions/groupsearch.php:58
+msgid "Group search"
+msgstr "Cercar grup"
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+#, fuzzy
+msgid "No results."
+msgstr "Cap resultat"
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grups"
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr "Grups, pàgina %d"
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+msgid "Create a new group"
+msgstr "Crear nou grup"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "Un usuari t'ha bloquejat."
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+msgid "Error removing the block."
+msgstr "Error al moure el block."
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "Configuració de missatgeria instantània"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/"
+"GTalk. Configura la teva adreça i opcions a sota."
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "Aquesta pàgina no està disponible en "
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Adreça actual Jabber/Gtalk confirmada."
+
+#: actions/imsettings.php:114
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte "
+"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva "
+"llista d'amics?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "Adreça de missatgeria instantània"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, "
+"assegura't d'afegir a %s a la teva llista d'amics en el teu client de "
+"missatgeria instantània o a GTalk."
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr "Enviar-me avisos per Jabber/GTalk."
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii."
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr ""
+"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic "
+"subscrita."
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk."
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr "Cap Jabber ID."
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Impossible normalitzar aquest Jabber ID"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr "Jabber ID no vàlid"
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr "Aquest ja és el teu Jabber ID."
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari."
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que "
+"has afegit. Has d'acceptar que %s et pugui enviar missatges."
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr "Aquest no és el teu Jabber ID."
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr "Safata d'entrada per %s - pàgina %d"
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr "Safata d'entrada per %s"
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr ""
+"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges "
+"privats."
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr ""
+"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo "
+"%s"
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr "Correu electrònic invàlid: %s"
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr "Invitació(ons) enviada(des)"
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr "Invitar nous usuaris"
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr "Ja estàs subscrit a aquests usuaris:"
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr "%s (%s)"
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr ""
+"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:"
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr "Invitació(ons) enviada(des) a la següent gent:"
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+"Seràs avisat quan les teves invitacions siguin acceptades i els teus "
+"convidats es registrin al lloc. Gràcies per fer créixer la comunitat."
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+"Utilitza aquest formulari per convidar els teus amics i col·legues perquè "
+"utilitzin aquest servei."
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr "Direcció de correu electrònic"
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr "Direccions d'amic per convidar (una per línia)"
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr "Missatge personal"
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr "Opcionalment pots afegir un missatge a la invitació."
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr "Enviar"
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s"
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -105,372 +1611,507 @@ msgstr ""
"\n"
"Sincerely, %2$s\n"
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
+msgstr "Has d'haver entrat per participar en un grup."
+
+#: actions/joingroup.php:90 lib/command.php:217
+msgid "You are already a member of that group"
+msgstr "Ja ets membre d'aquest grup"
+
+#: actions/joingroup.php:128 lib/command.php:234
#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
-msgstr "%1$s ara està escoltant els teus avisos a %2$s."
+msgid "Could not join user %s to group %s"
+msgstr "No s'ha pogut afegir l'usuari %s al grup %s"
-#: ../lib/mail.php:126
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-msgstr ""
-"%1$s ara està escoltant els teus avisos a %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Atentament,\n"
-"%4$s.\n"
+msgid "%s joined group %s"
+msgstr "%s s'ha pogut afegir al grup %s"
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
+msgstr "Has d'haver entrat per a poder marxar d'un grup."
+
+#: actions/leavegroup.php:90 lib/command.php:268
+msgid "You are not a member of that group."
+msgstr "No ets membre d'aquest grup."
+
+#: actions/leavegroup.php:119 lib/command.php:278
+msgid "Could not find membership record."
+msgstr "No s'han trobat registres dels membres."
+
+#: actions/leavegroup.php:127 lib/command.php:284
#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
-msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s."
+msgid "Could not remove user %s to group %s"
+msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid "%1$s's status on %2$s"
-msgstr "estat de %1$s a %2$s"
+msgid "%s left group %s"
+msgstr "%s ha abandonat el grup %s"
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
-
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "Flux públic de %s"
-
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s i amics"
-
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
-msgstr "%s línia temporal pública"
-
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
-#, php-format
-msgid "%s status"
-msgstr "%s estat"
-
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, php-format
-msgid "%s timeline"
-msgstr "%s línia temporal"
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
-#, php-format
-msgid "%s updates from everyone!"
-msgstr "%s notificacions de tots!"
-
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb "
-"instruccions sobre com confirmar la teva direcció de correu electrònic.)"
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%"
-"site.broughtbyurl%%)."
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr "**%%site.name%%** és un servei de microblogging."
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr ""
-". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. "
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr ""
-"1-64 lletres en minúscula o números, sense signes de puntuació o espais"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit."
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 o més caràcters"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 o més caràcters, i no te n'oblidis!"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr "6 o més caràcters. Requerit."
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que "
-"has afegit. Has d'acceptar que %s et pugui enviar missatges."
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"S'ha enviat un codi de confirmació al correu electrònic que has afegit. "
-"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest "
-"codi i les instruccions per utilitzar-lo."
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa "
-"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les "
-"instruccions per utilitzar-lo."
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr "No s'ha trobat el mètode API!"
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr "Mètode API en construcció."
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "Sobre"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Acceptar"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Afegir"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "Afegir OpenID"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr "Afegir o eliminar OpenIDs"
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Adreça"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Direccions d'amic per convidar (una per línia)"
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "Totes les subscripcions"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "Totes les actualitzacions per a %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" "
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Ja estàs connectat."
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Ja estàs subscrit!"
+#: actions/login.php:110 actions/login.php:120
+#, fuzzy
+msgid "Invalid or expired token."
+msgstr "El contingut de l'avís és invàlid"
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
-msgstr "N'estàs segur que vols eliminar aquesta notificació?"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Nom d'usuari o contrasenya incorrectes."
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Autoritzar subscripció"
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
+msgid "Error setting user."
+msgstr "Error en configurar l'usuari."
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Inici de sessió"
+
+#: actions/login.php:243
+msgid "Login to site"
+msgstr "Accedir al lloc"
+
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Sobrenom"
+
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Contrasenya"
+
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr "Recorda'm"
+
+#: actions/login.php:253 actions/register.php:479
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Iniciar sessió automàticament en el futur; no utilitzar en ordinadors "
"compartits!"
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Contrasenya oblidada o perduda?"
+
+#: actions/login.php:282
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i "
+"contrasenya abans de canviar la teva configuració."
+
+#: actions/login.php:286
+#, fuzzy, php-format
+msgid ""
+"Login with your username and password. Don't have a username yet? [Register]"
+"(%%action.register%%) a new account."
+msgstr ""
+"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no "
+"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova "
+"[OpenID] (%%action.openidlogin%%)."
+
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:95
+#, php-format
+msgid "%s is already an admin for group \"%s\"."
+msgstr ""
+
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
+msgstr ""
+
+#: actions/makeadmin.php:145
+#, php-format
+msgid "Can't make %s an admin for group %s"
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status"
+msgstr "No té cap estatus ara mateix"
+
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr "Nou grup"
+
+#: actions/newgroup.php:110
+msgid "Use this form to create a new group."
+msgstr "Utilitza aquest formulari per crear un nou grup."
+
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr "Nou missatge"
+
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr "No pots enviar un missatge a aquest usuari."
+
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr "Cap contingut!"
+
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr "No has especificat el destinatari."
+
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això."
+
+#: actions/newmessage.php:181
+#, fuzzy
+msgid "Message sent"
+msgstr "Missatge"
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr "Missatge directe per a %s enviat"
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr "Ajax Error"
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "Nou avís"
+
+#: actions/newnotice.php:199
+msgid "Notice posted"
+msgstr "Notificació publicada"
+
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb "
+"espais; han de ser majors a 3 caràcters."
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr "Cerca de text"
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr "Cerca \"%s\" al flux"
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "Actualitzacions de %1$s a %2$s!"
+
+#: actions/noticesearchrss.php:91
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" "
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set his email yet."
+msgstr ""
+"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu "
+"electrònic."
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr "Reclamació enviada"
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr "Reclamació enviada!"
+
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr "Avís sense perfil"
+
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "estat de %1$s a %2$s"
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Connectar-se"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr "Format de data no suportat."
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "Cercar gent"
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr "Cerca de notificacions"
+
+#: actions/othersettings.php:60
+msgid "Other Settings"
+msgstr "Altres configuracions"
+
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr "Gestionar altres vàries opcions."
+
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
+
+#: actions/othersettings.php:118
+msgid "Automatic shortening service to use."
+msgstr "Servei d'auto-escurçament a utilitzar."
+
+#: actions/othersettings.php:122
+#, fuzzy
+msgid "View profile designs"
+msgstr "Configuració del perfil"
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
+#: actions/othersettings.php:153
+msgid "URL shortening service is too long (max 50 chars)."
+msgstr ""
+"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)."
+
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr "Safata de sortida per %s - pàgina %d"
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "Safata de sortida per %s"
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr ""
+"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats "
+"que has enviat."
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Canviar contrasenya"
+
+#: actions/passwordsettings.php:69
+msgid "Change your password."
+msgstr "Canviar contrasenya"
+
+#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
+msgid "Password change"
+msgstr "Contrasenya canviada."
+
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr "Antiga contrasenya"
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "Nova contrasenya"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 o més caràcters"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr "repeteix la contrasenya anterior"
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Canviar"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters."
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Les contrasenyes no coincideixen."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Contrasenya antiga incorrecta"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr "Error en guardar usuari; invàlid."
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "No es pot guardar la nova contrasenya."
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Contrasenya guardada."
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes "
+"de cerca amb espais; han de ser majors a 3 caràcters."
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr "Cerca de gent"
+
+#: actions/peopletag.php:70
+#, php-format
+msgid "Not a valid people tag: %s"
+msgstr "Etiqueta no vàlida per a la gent: %s"
+
+#: actions/peopletag.php:144
+#, php-format
+msgid "Users self-tagged with %s - page %d"
+msgstr "Usuaris que s'han etiquetat %s - pàgina %d"
+
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr "El contingut de l'avís és invàlid"
+
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr "Configuració del perfil"
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+"Pots actualitzar la informació del teu perfil personal per a que la gent "
+"sàpiga més sobre tu."
+
+#: actions/profilesettings.php:99
+msgid "Profile information"
+msgstr "Informació del perfil"
+
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr ""
+"1-64 lletres en minúscula o números, sense signes de puntuació o espais"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Nom complet"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Pàgina personal"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr "URL del teu web, blog o perfil en un altre lloc"
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Explica'ns alguna cosa sobre tu "
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "Biografia"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Ubicació"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\""
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr "Etiquetes"
+
+#: actions/profilesettings.php:140
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+msgstr ""
+"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat "
+"por espais"
+
+#: actions/profilesettings.php:144
+msgid "Language"
+msgstr "Idioma"
+
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr "Preferència d'idioma"
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr "Franja horària"
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr "Quina franja horària seria normal ser?"
+
#: actions/profilesettings.php:160
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
@@ -478,177 +2119,351 @@ msgstr ""
"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal "
"per no-humans)"
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr "Avatar"
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr "Avatar actualitzat."
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
-#, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte "
-"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva "
-"llista d'amics?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la "
-"carpeta de spam!) per al missatge amb les instruccions."
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr "Esperant confirmació per aquest número de telèfon."
-
-#: ../lib/util.php:1318 lib/util.php:1452
-msgid "Before »"
-msgstr "Anterior »"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "Biografia"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
+#: actions/profilesettings.php:221 actions/register.php:223
+#, fuzzy, php-format
+msgid "Bio is too long (max %d chars)."
msgstr "La biografia és massa llarga (màx. 140 caràcters)."
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr "No es pot esborrar la notificació."
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
+msgstr "Franja horària no seleccionada."
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr "L'idioma és massa llarg (màx 50 caràcters)."
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
#, php-format
-msgid "Can't read avatar URL '%s'"
-msgstr "No es pot llegir l'URL de l'avatar '%s'"
+msgid "Invalid tag: \"%s\""
+msgstr "Etiqueta no vàlida: \"%s\""
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "No es pot guardar la nova contrasenya."
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr "No es pot actualitzar l'usuari per autosubscriure."
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Cancel·lar"
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "No s'ha pogut guardar el perfil."
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Impossible crear una instància de l'objecte OpenID"
+#: actions/profilesettings.php:336
+msgid "Couldn't save tags."
+msgstr "No s'han pogut guardar les etiquetes."
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Impossible normalitzar aquest Jabber ID"
+#: actions/profilesettings.php:344
+msgid "Settings saved."
+msgstr "Configuració guardada."
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
-msgstr "No es pot normalitzar aquesta direcció de correu electrònic"
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)"
+msgstr ""
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Canviar"
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr "No s'ha pogut recuperar la conversa pública."
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
-msgstr "Canviar correu electrònic"
+#: actions/public.php:129
+#, php-format
+msgid "Public timeline, page %d"
+msgstr "Línia temporal pública, pàgina %d"
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Canviar contrasenya"
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Línia temporal pública"
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
-msgstr "Canviar la teva contrasenya"
+#: actions/public.php:151
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Feed del flux públic"
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
-msgstr "Canviar les preferències del teu perfil"
+#: actions/public.php:155
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Feed del flux públic"
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Confirmar"
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Feed del flux públic"
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Confirmar adreça"
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Confirmació cancel·lada."
+#: actions/public.php:182
+msgid "Be the first to post!"
+msgstr ""
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
-msgstr "Codi de confirmació"
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Codi de confirmació no trobat. "
+#: actions/public.php:233
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
+#: actions/public.php:238
+#, fuzzy, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
+msgstr ""
+"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/"
+"wiki/Microblogging) "
+
+#: actions/publictagcloud.php:57
+msgid "Public tag cloud"
+msgstr "Núvol públic d'etiquetes"
+
+#: actions/publictagcloud.php:63
+#, php-format
+msgid "These are most popular recent tags on %s "
+msgstr "Aquestes són les etiquetes recents més populars a %s "
+
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
+msgid "Tag cloud"
+msgstr "Núvol d'etiquetes"
+
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr "Ja t'has connectat!"
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr "No existeix aquest codi de recuperació."
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr "No és un codi de recuperació."
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr "Codi de recuperació d'un usuari desconegut."
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr "Error amb el codi de confirmació."
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou."
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat"
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr ""
+"El teu nom d'usuari en aquest servidor, o la teva adreça de correu "
+"electrònic registrada."
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr "Recuperar"
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr "Restablir contrasenya"
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr "Recuperar contrasenya"
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr "Recuperació de contrasenya sol·licitada"
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr "Acció desconeguda"
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 o més caràcters, i no te n'oblidis!"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr "Igual a la contrasenya de dalt"
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr "Restablir"
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Escriu un sobrenom o una adreça de correu electrònic."
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr "No hi ha cap usuari amb aquesta direcció o usuari."
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr "Cap adreça de correu electrònic registrada per aquest usuari."
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr "Error en guardar confirmació de l'adreça."
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de "
+"correu electrònic registrada."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr "Restabliment de contrasenya inesperat."
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "La contrasenya ha de tenir 6 o més caràcters."
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "La contrasenya i la confirmació no coincideixen."
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió."
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
+msgid "Sorry, only invited people can register."
+msgstr "Ho senti, però només la gent convidada pot registrar-se."
+
+#: actions/register.php:92
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "Error amb el codi de confirmació."
+
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr "Registre satisfactori"
+
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr "Registrar-se"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr "Registre no permès."
+
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr "No pots registrar-te si no estàs d'acord amb la llicència."
+
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr "Adreça de correu electrònic no vàlida."
+
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "L'adreça de correu electrònic ja existeix."
+
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr "Nom d'usuari o contrasenya invàlids."
+
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr ""
+"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit."
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr "6 o més caràcters. Requerit."
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr "Igual a la contrasenya de dalt. Requerit."
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "Correu electrònic"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr ""
+"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes"
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr "Nom llarg, preferiblement el teu nom \"real\""
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr "El meu text i els meus fitxers estan disponibles sota "
+
+#: actions/register.php:495
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
+
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr ""
+"excepte les següents dades privades: contrasenya, adreça de correu "
+"electrònic, adreça de missatgeria instantània, número de telèfon."
+
+#: actions/register.php:537
#, php-format
msgid ""
"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -679,2150 +2494,14 @@ msgstr ""
"\n"
"Gràcies per registrar-te i esperem que gaudeixis d'aquest servei."
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Connectar-se"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Connectar-se a un compte existent"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Posar-se en contacte"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "No s'ha pogut crear el formulari OpenID: %s"
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr ""
-"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista."
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix."
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "No s'ha pogut redirigir al servidor: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "No s'ha pogut guardar la informació de l'avatar"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "No s'ha pogut guardar la informació del nou perfil"
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr "No pots subscriure a un altre a tu mateix."
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr "No pots subscriure."
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat"
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "No s'ha pogut eliminar la confirmació de correu electrònic."
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "No s'ha pogut eliminar la subscripció."
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr "No es pot trobar cap estatus."
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr "No s'ha pogut obtenir un senyal de petició."
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "No s'ha pogut inserir el codi de confirmació."
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "No s'ha pogut inserir una nova subscripció."
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "No s'ha pogut guardar el perfil."
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr "No es pot actualitzar l'usuari per autosubscriure."
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr "No s'ha pogut actualitzar el registre de l'usuari."
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "No s'ha pogut actualitzar l'usuari."
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Crear"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Crear un nou usuari amb aquest sobrenom."
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Crear nou compte"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Crear nou compte per a un OpenID que ja té un usuari."
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Adreça actual Jabber/Gtalk confirmada."
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr "Número de telèfon actualment confirmat i activat per SMS."
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr "Correu electrònic confirmat actualment."
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr "Actualment"
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr "Hashtag de l'error de la base de dades:%s"
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "Error de BD en inserir resposta: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr "Eliminar nota."
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "Correu electrònic"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr "Direcció de correu electrònic"
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr "Configuració del correu electrònic"
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "L'adreça de correu electrònic ja existeix."
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "Confirmació de l'adreça de correu electrònic"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr "Correu electrònic, com Email address, like \"UserName@example.org\""
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr "Direcció de correu electrònic"
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Escriu un sobrenom o una adreça de correu electrònic."
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr "Escriu el codi que has rebut en el teu telèfon mòbil."
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr "Error en autoritzar senyal"
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr "Error en connectar usuari a OpenID."
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr "Error en connectar usuari."
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr "Error en inserir avatar"
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr "Error en inserir el nou perfil"
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr "Error en inserir perfil remot"
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr "Error en guardar confirmació de l'adreça."
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr "Error en guardar perfil remot"
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr "Error en guardar perfil."
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr "Error en guardar l'usuari."
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr "Error en guardar usuari; invàlid."
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
-msgid "Error setting user."
-msgstr "Error en configurar l'usuari."
-
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr "Error en actualitzar el perfil"
-
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr "Error en actualitzar el perfil remot"
-
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr "Error amb el codi de confirmació."
-
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr "Sobrenom ja existent."
-
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "Preguntes freqüents"
-
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr "Error en actualitzar avatar."
-
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, php-format
-msgid "Feed for friends of %s"
-msgstr "Feed per a amics de %s"
-
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, php-format
-msgid "Feed for replies to %s"
-msgstr "Feed per a respostes a %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr "Feed per a l'etiqueta %s"
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr "Trobar contingut de les notes"
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr "Trobar gent en aquest lloc"
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
-#: actions/login.php:282
+#: actions/register.php:561
msgid ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
msgstr ""
-"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i "
-"contrasenya abans de canviar la teva configuració."
+"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb "
+"instruccions sobre com confirmar la teva direcció de correu electrònic.)"
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Nom complet"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "El teu nom és massa llarg (màx. 255 caràcters)."
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Ajuda"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Inici"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Pàgina personal"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr "La pàgina personal no és un URL vàlid."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr "Vull publicar notificacions per correu electrònic."
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr "Missatgeria Instantània"
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "Adreça de missatgeria instantània"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "Configuració de missatgeria instantània"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i "
-"contrasenya per a connectar-lo al teu OpenID."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica "
-"\"Afegir\"."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova "
-"que t'enviarem al correu electrònic que tinguis posat al teu compte."
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr "Correu electrònic entrant"
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr "Eliminat el correu electrònic entrant."
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Contrasenya antiga incorrecta"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Nom d'usuari o contrasenya incorrectes."
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de "
-"correu electrònic registrada."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr "L'URL de l'avatar '%s' és invàlid"
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr "Correu electrònic invàlid: %s"
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr "La pàgina personal '%s' és invàlida"
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr "L'URL de la llicència '%s' és invàlid"
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr "El contingut de l'avís és invàlid"
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr "L'URI de l'avís '%s' és invàlid"
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr "L'URL de l'avís '%s' és invàlid"
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr "L'URL del perfil '%s' és invàlid."
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "L'URL del perfil és invàlid (format incorrecte)"
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr "URL del perfil retornat pel servidor invàlid."
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr "Mida invàlida."
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr "Nom d'usuari o contrasenya invàlids."
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr "Invitació(ons) enviada(des)"
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr "Invitació(ons) enviada(des) a la següent gent:"
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr "Invitar"
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr "Invitar nous usuaris"
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-"Utilitza el software de microblogging [StatusNet](http://status.net), versió "
-"%s, disponible sota la [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari."
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, "
-"assegura't d'afegir a %s a la teva llista d'amics en el teu client de "
-"missatgeria instantània o a GTalk."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr "Idioma"
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr "L'idioma és massa llarg (màx 50 caràcters)."
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Ubicació"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "La ubicació és massa llarga (màx. 255 caràcters)."
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Inici de sessió"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-msgstr ""
-"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no "
-"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova "
-"[OpenID] (%%action.openidlogin%%)."
-
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Sortir"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Nom llarg, preferiblement el teu nom \"real\""
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Contrasenya oblidada o perduda?"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic."
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr "Gestionar com reps correus de %%site.name%%."
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Membre des de"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr "Microblog de %s"
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
-msgstr ""
-"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que "
-"accepti SMS a través del correu electrònic, però no està a la llista, "
-"envia'ns un correu electrònic per fer-nos-ho saber %s."
-
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr "El meu text i els meus fitxers estan disponibles sota "
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr "Nou"
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
-#, php-format
-msgid "New email address for posting to %s"
-msgstr "Nou correu electrònic per publicar a %s"
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr "Nou correu electrònic entrant afegit."
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "Nou sobrenom"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr "Nou avís"
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "Nova contrasenya"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió."
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Sobrenom"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Aquest sobrenom ja existeix. Prova un altre. "
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr ""
-"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir "
-"espais."
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Sobrenom no permès."
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Sobrenom de l'usuari que vols seguir"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Sobrenom o correu electrònic"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr "No"
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr "Cap Jabber ID."
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr "Cap petició d'autorització!"
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-msgid "No carrier selected."
-msgstr "No s'ha sel·leccionat cap transport."
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr "No hi ha cap codi entrat"
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr "Cap codi de confirmació."
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr "Cap contingut!"
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr "No hi ha cap direcció de correu electrònic."
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr "Cap identificador."
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr "No hi ha cap direcció de correu electrònic entrant."
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr "Cap sobrenom retornat pel servidor remot."
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr "Cap sobrenom."
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr "Cap confirmació pendent per a cancel·lar."
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr "No hi ha cap número de telèfon."
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr "Cap URL de perfil retornar pel servidor."
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr "Cap adreça de correu electrònic registrada per aquest usuari."
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr "Cap petició trobada!"
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr "Cap resultat"
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr "Cap mida."
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr "No s'ha trobat cap estatus amb aquesta ID."
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr "No s'ha trobat cap estatus amb la ID trobada."
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr "No existeix aquest compte OpenID."
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr "No existeix aquest document."
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr "No existeix aquest avís."
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr "No existeix aquest codi de recuperació."
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr "No existeix aquesta subscripció"
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr "No existeix aquest usuari."
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr "No hi ha cap usuari amb aquesta direcció o usuari."
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr "Ningú a mostrar!"
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr "No és un codi de recuperació."
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr "Usuari no registrat."
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr "Format de data no suportat."
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr "Jabber ID no vàlid"
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr "OpenID no vàlid."
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr "No és una direcció de correu electrònic vàlida."
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr "Adreça de correu electrònic no vàlida."
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr "Sobrenom no vàlid."
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr "URL de perfil no vàlid (serveis incorrectes)."
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr "URL de perfil no vàlid (XRDS no definit)."
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr "URL de perfil no vàlid (cap document YADIS)."
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr "No és una imatge o és un fitxer corrupte."
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr "No autoritzat."
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr "Resposta inesperada!"
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr "No s'ha trobat"
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr "No connectat."
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr "No estàs subscrit!"
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr "Cerca de notificacions"
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, php-format
-msgid "Notice feed for %s"
-msgstr "Feed d'avisos de %s"
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr "Avís sense perfil"
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr "Avisos"
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr "Aviso etiquetats amb %s"
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr "Antiga contrasenya"
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr "Configuració del compte OpenID"
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr "Auto-enviament d'OpenID"
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr "Accés OpenID"
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr "URL OpenID"
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr "Autenticació OpenID cancel·lada."
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr "Autenticació OpenID fallida: %s."
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr "Error OpenID: %s"
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "OpenID eliminat."
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "Configuració OpenID"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr "Opcionalment pots afegir un missatge a la invitació."
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr "Càrrega parcial."
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Contrasenya"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "La contrasenya i la confirmació no coincideixen."
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "La contrasenya ha de tenir 6 o més caràcters."
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr "Recuperació de contrasenya sol·licitada"
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Contrasenya guardada."
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Les contrasenyes no coincideixen."
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr "Gent"
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr "Cercar gent"
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr "Cerca de gent"
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Personal"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr "Missatge personal"
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi"
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-msgstr ""
-"Si us plau, revisa aquestes dades per a estar segur que desitges "
-"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als "
-"avisos de ningú, clica \"Cancel·lar\"."
-
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii."
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Preferències"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Preferències guardades."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr "Preferència d'idioma"
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr "Privacitat"
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr "Problema en guardar l'avís."
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr "Perfil"
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr "URL del perfil"
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr "Configuració del perfil"
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr "Perfil desconegut"
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-msgid "Public Stream Feed"
-msgstr "Feed del flux públic"
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr "Línia temporal pública"
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk."
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr "Publica una MicroID per al meu correu electrònic."
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr "Etiquetes recents"
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr "Recuperar"
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr "Recuperar contrasenya"
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr "Codi de recuperació d'un usuari desconegut."
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr "Registrar-se"
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr "Registre no permès."
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr "Registre satisfactori"
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr "Rebutjar"
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr "Recorda'm"
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr "Perfil remot sense perfil corresponent"
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr "Subscripció remota"
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr "Eliminar"
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr "Eliminar OpenID"
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-msgstr ""
-"Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites "
-"eliminar-lo, afegeix un altre abans."
-
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr "Respostes"
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
-#, php-format
-msgid "Replies to %s"
-msgstr "Respostes a %s"
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr "Restablir"
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr "Restablir contrasenya"
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr "SMS"
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr "Número de telèfon pels SMS"
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr "Configuració SMS"
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr "Confirmació SMS"
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Igual a la contrasenya de dalt"
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr "Igual a la contrasenya de dalt. Requerit."
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr "Guardar"
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr "Cercar"
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-msgid "Search Stream Feed"
-msgstr "Feed del flux de cerca"
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-msgstr ""
-"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb "
-"espais; han de ser majors a 3 caràcters."
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes "
-"de cerca amb espais; han de ser majors a 3 caràcters."
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-msgid "Select a carrier"
-msgstr "Selecciona un transport"
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr "Enviar"
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr ""
-"Enviar correu electrònic a aquesta direcció per publicar noves notificacions."
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr ""
-"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu "
-"electrònic."
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Enviar-me avisos per Jabber/GTalk."
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una "
-"exorbitant càrrega del meu transport."
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
-"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic "
-"subscrita."
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr "Configuració"
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr "Configuració guardada."
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr "Mostrant les etiquetes més populars de l'última setmana"
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr "Algú ja té aquest OpenID."
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr "Alguna cosa estranya ha passat."
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr "Perdó, no hi ha un correu electrònic entrant permès."
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr "Perdó, aquest no és el teu correu electrònic entrant permès."
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr "Font"
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr "Estadístiques"
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr "No s'ha trobat l'OpenID emmagatzemat."
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr "Subscriure's"
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr "Subscriptors"
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr "Subscripció autoritzada"
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr "Subscripció rebutjada"
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr "Subscripcions"
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr "Error del sistema en pujar el fitxer."
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr "Etiquetes"
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr "Text"
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr "Cerca de text"
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr "Aquest OpenID no és teu."
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr "Aquesta adreça ja ha estat confirmada."
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr "Aquest codi de confirmació no és per a tu!"
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr "Aquest correu electrònic pertany a un altre usuari."
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr "Aquest fitxer és massa gran."
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr "Aquest ja és el teu Jabber ID."
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr "Aquest ja és el teu correu electrònic."
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr "Aquest ja és el teu número de telèfon."
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr "Aquest no és el teu Jabber ID."
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr "Aquest no és el teu correu electrònic"
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr "Aquest no és el teu número de telèfon."
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr "Aquesta adreça de missatgeria instantània és incorrecta."
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr "Aquest és un número de confirmació incorrecte."
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr "Aquest número de telèfon pertany a un altre usuari."
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr "Massa llarg. La longitud màxima és de 140 caràcters."
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr "Massa llarg. La longitud màxima és de 255 caràcters."
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte."
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr "L'adreça ha estat eliminada."
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. "
-"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. "
-"El teu identificador de subscripció és:"
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix "
-"de nou les instruccions per a saber com rebutjar la subscripció completament."
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr "Aquestes són les persones que escolten els avisos de %s."
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr "Aquestes són les persones que escolten els teus avisos."
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr "Aquestes són les persones que %s escolta."
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr "Aquestes són les persones que escoltes."
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr ""
-"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:"
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou."
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-"Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el "
-"botó d'enviament per a anar al teu proveïdor d'OpenID."
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-"Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar "
-"el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb "
-"el teu, si el tens."
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr "Aquest mètode requereix POST o DELETE."
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr "Aquest mètode requereix POST."
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis."
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr "Franja horària"
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
-msgstr "Franja horària no seleccionada."
-
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
#: actions/remotesubscribe.php:98
#, php-format
msgid ""
@@ -2835,272 +2514,357 @@ msgstr ""
"de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu "
"perfil a sota."
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
-msgstr "Dos ids d'usuari o screen_names has de ser substituïts."
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
+msgstr "Subscripció remota"
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL del teu web, blog o perfil en un altre lloc"
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Subscriure's a aquest usuari"
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "URL del teu perfil en un altre servei de microblogging compatible"
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr "Enviament de formulari inesperat."
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr "Restabliment de contrasenya inesperat."
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr "Acció desconeguda"
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr "Versió desconeguda del protocol OMB."
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-"Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat "
-"dels seus col·laboradors i està disponible sota la"
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr "Tipus d'adreça %s desconeguda"
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr "Cancel·lar subscripció"
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr "Versió OMB no suportada"
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr "Format d'imatge no suportat."
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr "Actualitzacions per SMS"
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr "Actualitzacions per Missatgeria Instantània"
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr "Actualitzacions de %1$s i amics a %2$s!"
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr "Actualitzacions de %1$s a %2$s!"
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr "Pujar"
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-"Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una "
-"vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, "
-"ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva "
-"i que vulguis compartir."
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr "Carregar una nova imatge per al perfil"
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr ""
-"Utilitza aquest formulari per convidar els teus amics i col·legues perquè "
-"utilitzin aquest servei."
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr ""
-"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes"
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr "L'usuari que vols seguir no existeix."
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr "L'usuari no té perfil."
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr "Sobrenom de l'usuari"
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
-msgstr "No s'ha trobat l'usuari."
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Sobrenom de l'usuari que vols seguir"
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
-msgstr "Quina franja horària seria normal ser?"
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
+msgstr "URL del perfil"
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
-msgstr "Què tal, %s?"
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
+msgstr "URL del teu perfil en un altre servei de microblogging compatible"
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
-msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\""
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
+msgstr "Subscriure's"
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr "Tipus d'imatge incorrecte per a '%s'"
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
+msgstr "L'URL del perfil és invàlid (format incorrecte)"
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr "Mida d'imatge incorrecta per a '%s'"
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr "Sí"
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr "Ja tens aquest OpenID!"
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
+#: actions/remotesubscribe.php:168
+#, fuzzy
msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
+msgstr "URL de perfil no vàlid (cap document YADIS)."
+
+#: actions/remotesubscribe.php:176
+#, fuzzy
+msgid "That’s a local profile! Login to subscribe."
+msgstr "Aquest és un perfil local! Entra per subscriure-t'hi."
+
+#: actions/remotesubscribe.php:183
+#, fuzzy
+msgid "Couldn’t get a request token."
+msgstr "No s'ha pogut obtenir un senyal de petició."
+
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
+#, php-format
+msgid "Replies to %s"
+msgstr "Respostes a %s"
+
+#: actions/replies.php:127
+#, php-format
+msgid "Replies to %s, page %d"
+msgstr "Respostes a %s, pàgina %d"
+
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/replies.php:158
+#, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/replies.php:198
+#, php-format
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
msgstr ""
-"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, "
-"no ho podràs desfer."
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
-msgstr "Ja t'has connectat!"
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr "Ja estàs subscrit a aquests usuaris:"
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr "No ets amic dels usuaris que has especificat."
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "Missatge per a %1$s a %2$s"
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr "Pots canviar la teva contrasenya aquí. Tria una de bona!"
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
+msgstr "%s notificacions favorites, pàgina %d"
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr "Pots crear un nou compte i començar a enviar avisos."
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr "No s'ha pogut recuperar els avisos de favorits."
+
+#: actions/showfavorites.php:170
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Feed per a amics de %s"
+
+#: actions/showfavorites.php:177
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Feed per a amics de %s"
+
+#: actions/showfavorites.php:184
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Feed per a amics de %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
+#, php-format
+msgid "%s group"
+msgstr "%s grup"
+
+#: actions/showgroup.php:84
+#, php-format
+msgid "%s group, page %d"
+msgstr "%s grup, pàgina %d"
+
+#: actions/showgroup.php:218
+msgid "Group profile"
+msgstr "Perfil del grup"
+
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
+msgid "URL"
+msgstr "URL"
+
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
+msgid "Note"
+msgstr "Avisos"
+
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
+msgid "Group actions"
+msgstr "Accions del grup"
+
+#: actions/showgroup.php:328
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
+msgstr "Feed d'avisos del grup %s"
+
+#: actions/showgroup.php:334
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Feed d'avisos del grup %s"
+
+#: actions/showgroup.php:340
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Feed d'avisos del grup %s"
+
+#: actions/showgroup.php:345
+#, php-format
+msgid "FOAF for %s group"
+msgstr "Safata de sortida per %s"
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
+msgid "Members"
+msgstr "Membres"
+
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
+msgid "(None)"
+msgstr "(Cap)"
+
+#: actions/showgroup.php:392
+msgid "All members"
+msgstr "Tots els membres"
+
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr "Estadístiques"
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Crear"
+
+#: actions/showgroup.php:448
+#, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showgroup.php:454
+#, fuzzy, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
+msgstr ""
+"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]"
+"(http://ca.wikipedia.org/wiki/Microblogging)"
+
+#: actions/showgroup.php:482
+#, fuzzy
+msgid "Admins"
+msgstr "Admin"
+
+#: actions/showmessage.php:81
+msgid "No such message."
+msgstr "No existeix el missatge."
+
+#: actions/showmessage.php:98
+msgid "Only the sender and recipient may read this message."
+msgstr "Només el remitent i el receptor poden llegir aquest missatge."
+
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "Missatge per a %1$s a %2$s"
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "Missatge de %1$s a %2$s"
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Notificació publicada"
+
+#: actions/showstream.php:73
+#, fuzzy, php-format
+msgid " tagged %s"
+msgstr "Aviso etiquetats amb %s"
+
+#: actions/showstream.php:79
+#, php-format
+msgid "%s, page %d"
+msgstr "%s, pàgina %d"
+
+#: actions/showstream.php:122
+#, fuzzy, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr "Feed d'avisos del grup %s"
+
+#: actions/showstream.php:129
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/showstream.php:143
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/showstream.php:148
+#, fuzzy, php-format
+msgid "FOAF for %s"
+msgstr "Safata de sortida per %s"
+
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
+msgstr ""
+
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
+
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/showstream.php:234
+#, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showstream.php:239
+#, fuzzy, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
+msgstr ""
+"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://"
+"ca.wikipedia.org/wiki/Microblogging) "
+
+#: actions/smssettings.php:58
+msgid "SMS Settings"
+msgstr "Configuració SMS"
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
#: actions/smssettings.php:69
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
@@ -3108,1891 +2872,99 @@ msgstr ""
"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name"
"%%."
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
+#: actions/smssettings.php:91
+#, fuzzy
+msgid "SMS is not available."
+msgstr "Aquesta pàgina no està disponible en "
+
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "Número de telèfon actualment confirmat i activat per SMS."
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
+msgstr "Esperant confirmació per aquest número de telèfon."
+
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr "Codi de confirmació"
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr "Escriu el codi que has rebut en el teu telèfon mòbil."
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr "Número de telèfon pels SMS"
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi"
+
+#: actions/smssettings.php:174
msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"."
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una "
+"exorbitant càrrega del meu transport."
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr "No hi ha cap número de telèfon."
+
+#: actions/smssettings.php:311
+msgid "No carrier selected."
+msgstr "No s'ha sel·leccionat cap transport."
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr "Aquest ja és el teu número de telèfon."
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr "Aquest número de telèfon pertany a un altre usuari."
+
+#: actions/smssettings.php:347
+#, fuzzy
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
msgstr ""
-"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/"
-"GTalk. Configura la teva adreça i opcions a sota."
+"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa "
+"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les "
+"instruccions per utilitzar-lo."
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr ""
-"Pots actualitzar la informació del teu perfil personal per a que la gent "
-"sàpiga més sobre tu."
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr "Aquest és un número de confirmació incorrecte."
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr "Pots utilitzar la subscripció local!"
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr "Aquest no és el teu número de telèfon."
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr "No pots registrar-te si no estàs d'acord amb la llicència."
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr "No ens vas enviar aquest perfil"
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-msgstr ""
-"Tens una nova direcció per publicar a %1$s.\n"
-"\n"
-"Envia un correu electrònic a %2$s per publicar un nou missatge.\n"
-"\n"
-"Més instruccions per al correu electrònic a %3$s.\n"
-"\n"
-"Sincerament teus,\n"
-"%4$s"
-
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr "No pots eliminar l'estatus d'un altre usuari."
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr ""
-"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo "
-"%s"
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-"Seràs avisat quan les teves invitacions siguin acceptades i els teus "
-"convidats es registrin al lloc. Gràcies per fer créixer la comunitat."
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr "T'has identificat. Escriu una nova contrasenya a continuació."
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr "El teu URL OpenID"
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr ""
-"El teu nom d'usuari en aquest servidor, o la teva adreça de correu "
-"electrònic registrada."
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix "
-"compte d'usuari. Administra els teus OpenID associats aquí."
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr "fa pocs segons"
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr "fa %d dies"
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr "fa %d hores"
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr "fa %d minuts"
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr "fa %d mesos"
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr "fa un dia"
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr "fa un minut"
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr "fa un mes"
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr "fa un any"
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr "fa una hora"
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr "eliminar"
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr "en resposta a..."
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr "resposta"
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr "repeteix la contrasenya anterior"
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr "tipus de fitxer no suportat"
-
-#: ../lib/util.php:1309 lib/util.php:1443
-msgid "« After"
-msgstr "« Posterior"
-
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
-"us plau."
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr "Aquesta notificació no és un favorit!"
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr "No pots eliminar favorits."
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr "Favorit"
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr ""
-"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit."
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat."
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr "Aquesta nota ja és favorita."
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr "No es pot crear favorit."
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr "Desfavorit"
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
-#, php-format
-msgid "%s favorite notices"
-msgstr "%s notificacions favorites"
-
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr "Feed de notes favorites de %s"
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr "Safata d'entrada per %s - pàgina %d"
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr "Safata d'entrada per %s"
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr ""
-"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges "
-"privats."
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-"%1$s t'ha convidat a participar a %2$s (%3$s).\n"
-"\n"
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr "Accedir automàticament en el futur; "
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr "Per raons de seguretat, si us plau torna a escriure la teva "
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr "Entra amb el teu usuari i contrasenya. "
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr "És massa llarg. Màxim del missatge és 140 caràcters."
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr "No has especificat el destinatari."
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr "No pots enviar un missatge a aquest usuari."
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això."
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr "Aquest usuari no existeix"
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr "Nou missatge"
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr "Notificar sense especificar perfil"
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs web "
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr "Si vols afegit un OpenID al teu compte, "
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr "Eliminant la teva única OpenID et serà impossible accedir-hi! "
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr "Pots eliminar un OpenID del teu compte "
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr "Safata de sortida per %s - pàgina %d"
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr "Safata de sortida per %s"
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr ""
-"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats "
-"que has enviat."
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr "Cercar gent a %%site.name%% pel seu nom, localització, o interessos. "
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr "Pots actualitzar la informació del teu perfil aquí "
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr "Usuari sense perfil coincident"
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr "El codi de confirmació és massa antic. "
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr "Si has oblidat o perdut el teu"
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr "Has estat identificat. Entra "
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr "El teu nom d'usuari en aquest servidor, "
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr "Instruccions per recuperar la teva contrasenya "
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr "La nova contrasenya s'ha guardat satisfactòriament. "
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters."
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr ""
-"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser "
-"vols..."
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr ""
-"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb "
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr "Per subscriure't, pots [accedir] (%%action.login%%),"
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr "Feed per favorits de %s"
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr "No s'ha pogut recuperar els avisos de favorits."
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr "No existeix el missatge."
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr "Només el remitent i el receptor poden llegir aquest missatge."
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr "Missatge per a %1$s a %2$s"
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr "Missatge de %1$s a %2$s"
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr "Enviar un missatge"
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, php-format
-msgid "Mobile carrier for your phone. "
-msgstr "Transport per al teu telèfon. "
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr "Missatges directes a %s"
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr "Tots els missatges directes enviats a %s"
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr "Missatges directes que has enviat"
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr "Tots els missatges directes enviats per %s"
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr "No hi ha text al missatge!"
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr "No has escrit cap usuari receptor."
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus."
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr "%s / Favorits de %s"
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr "%s actualitzacions favorites per %s / %s."
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr "%s ha afegit la teva nota com a favorita"
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-"%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n"
-"\n"
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes "
-"a Twitter, "
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr "Configuració Twitter"
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr "Compte Twitter"
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr "Compte Twitter verificat actualment."
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr "Usuari Twitter"
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr "No espais, si us plaus."
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr "Contrasenya Twitter"
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr "Automàticament envia les meves notes a Twitter."
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr "Envia respostes locals '@' a Twitter."
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr "Subscriure'm als meus amics de Twitter aquí."
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-"El nom d'usuari sols pot contenir números, lletres en majúscules i "
-"minúscules, i guions baixos (_). 15 caràcters màxim."
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr "No es poden verificar les teves credencials de Twitter!"
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter."
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr "No s'ha pogut guardar la teva configuració de Twitter!"
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr "Configuració de Twitter guardada."
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr "Aquest no és el teu compte de Twitter."
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr "No es pot eliminar aquest usuari de Twitter."
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr "Compte de Twitter eliminat."
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr "No es poden guardar les preferències de Twitter."
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr "Preferències de Twitter guardades."
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr "Si us plau verifica aquests detalls per estar-ne segur/a "
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr "La subscripció s'ha autoritzat, però no "
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr "La subscripció ha estat rebutjada, però no "
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr "Resultats de les comandes"
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr "Comanda completada"
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr "Comanda fallida"
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr "Perdona, aquesta comanda no està implementada."
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr "Subscripcions: %1$s\n"
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr "L'usuari no té última nota"
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr "Nota marcada com a favorita."
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr "%1$s (%2$s)"
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr "Nom complet: %s"
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr "Localització: %s"
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr "Pàgina web: %s"
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr "Sobre tu: %s"
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr "Missatge directe per a %s enviat"
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr "Error al enviar el missatge directe."
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr "Especifica el nom de l'usuari a que vols subscriure't"
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr "Subscrit a %s"
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit"
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr "Has deixat d'estar subscrit a %s"
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr "Comanda encara no implementada."
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr "Notificacions off."
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr "No es poden posar en off les notificacions."
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr "Notificacions on."
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr "No es poden posar en on les notificacions."
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr "Comandes:\n"
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr "No s'ha pogut inserir el missatge."
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr "No s'ha pogut inserir el missatge amb la nova URI."
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr "L'usuari no té cap perfil que coincideixi en aquest sistema."
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-"Tens una nova direcció per publicar a %1$s.\n"
-"\n"
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr "Nou missatge privat de %s"
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-"%1$s (%2$s) t'ha enviat un nou missatge privat:\n"
-"\n"
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr "Només l'usuari pot llegir les seves safates de correu."
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr "Aquest formulari s'ha d'enviar automàticament. "
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr "Favorits"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr "%s's notes favorites"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr "Usuari"
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr "Safata d'entrada"
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr "Els teus missatges rebuts"
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr "Safata de sortida"
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr "Els teus missatges enviats"
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr "Twitter"
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr "Opcions d'integració amb Twitter"
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr "A"
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr "No es pot analitzar el missatge."
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, php-format
-msgid "%s and friends, page %d"
-msgstr "%s i amics, pàgina %d"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr "Pots pujar el teu avatar personal."
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
-msgid "Avatar settings"
-msgstr "Configuració de l'avatar"
-
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr "Original"
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr "Previsualitzar"
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr "Crop"
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
-msgid "There was a problem with your session token. "
-msgstr "Ha ocorregut un error amb la teva sessió. "
-
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr ""
-"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu "
-"avatar."
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr "S'ha perdut el nostre fitxer de dades."
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-msgid "Lost our file."
-msgstr "Hem perdut el nostre arxiu."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr "Tipus de fitxer desconegut"
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr "No s'ha especificat perfil."
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr "No hi ha cap perfil amb aquesta ID."
-
-#: actions/block.php:111 actions/block.php:134
-msgid "Block user"
-msgstr "Usuari bloquejat."
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr "N'estàs segur/a que vols bloquejar aquest usuari? "
-
-#: actions/block.php:162 actions/block.php:165
-msgid "You have already blocked this user."
-msgstr "Ja havies bloquejat aquest usuari."
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr "Error al guardar la informació del block."
-
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been "
-msgstr "L'adreça \"%s\" ha estat eliminada "
-
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr "Estàs a punt d'eliminar permanentment una notificació. "
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr "Afegir a favorits"
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
-#, php-format
-msgid "Edit %s group"
-msgstr "Editar el grup %s"
-
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr "La safata d'entrada ha d'estar habilitat per als grups de treball"
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr "Has d'haver entrat per crear un grup."
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-msgid "No nickname"
-msgstr "Cap sobrenom."
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-msgid "No such group"
-msgstr "No existeix tal grup"
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr "Has de ser admin per editar aquest grup"
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr "Utilitza aquest formulari per editar el grup."
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-msgid "Nickname must have only lowercase letters "
-msgstr ""
-"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir "
-"espais. "
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-msgid "description is too long (max 140 chars)."
-msgstr "la descripció és massa llarga (màx. 140 caràcters)."
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-msgid "Could not update group."
-msgstr "No s'ha pogut actualitzar el grup."
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-msgid "Options saved."
-msgstr "Configuració guardada."
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr "Esperant el codi de confirmació en aquesta direcció. "
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-msgid "Make a new email address for posting to; "
-msgstr "Indicar una nova direcció de correu electrònic per publicar; "
-
-#: actions/emailsettings.php:157
-msgid "Send me email when someone "
-msgstr "Envia'm un correu electrònic quan algú "
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic."
-
-#: actions/emailsettings.php:321
-msgid "That email address already belongs "
-msgstr "L'adreça de correu electrònic ja pertany "
-
-#: actions/emailsettings.php:343
-msgid "A confirmation code was sent to the email address you added. "
-msgstr ""
-"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que "
-"has afegit. "
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr "Error del servidor - no es pot obtenir l'usuari!"
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr "Si vols l'aplicació %s per actualitzar automàticament "
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr "Permetre %s actualitzar el meu estat a Facebook"
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr "Saltar"
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-msgid "No notice content!"
-msgstr "Cap contingut!"
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr "Paginació"
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-msgid "After"
-msgstr "Posteriors"
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-msgid "Before"
-msgstr "Anteriors"
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr "Gràcies per convidar els teus amics a utilitzar %s"
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr "Les invitacions han estat enviades als següents usuaris:"
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, php-format
-msgid "You have been invited to %s"
-msgstr "Has estat convidat a %s"
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, php-format
-msgid "Invite your friends to use %s"
-msgstr "Convidar els teus amics a utilitzar %s"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr "Amics ja utilitzant %s:"
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr "Enviar invitacions"
-
-#: actions/facebookremove.php:56
-msgid "Couldn't remove Facebook user."
-msgstr "No s'ha pogut eliminar l'usuari de Facebook."
-
-#: actions/facebooksettings.php:65
-msgid "There was a problem saving your sync preferences!"
-msgstr ""
-"Ha ocorregut un problema al guardar les preferències de sincronització!"
-
-#: actions/facebooksettings.php:67
-msgid "Sync preferences saved."
-msgstr "Preferències de sincronització guardades."
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr ""
-"Actualitzar automàticament el meu estat a Facebook amb les meves "
-"notificacions."
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr "Envia \"@\" respostes a Facebook."
-
-#: actions/facebooksettings.php:106
-msgid "Prefix"
-msgstr "Prefix"
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr "La frase que serveixi de prefix a les notes."
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr "Si vols que %s s'actualitzi automàticament "
-
-#: actions/facebooksettings.php:147
-msgid "Sync preferences"
-msgstr "Preferències de sincronització"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-msgid "Disfavor favorite"
-msgstr "Desfavoritar favorit"
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-msgid "Popular notices"
-msgstr "Notificacions populars"
-
-#: actions/favorited.php:67
-#, php-format
-msgid "Popular notices, page %d"
-msgstr "Notificacions populars, pàgina %d"
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr "Les notificacions més populars en aquest lloc ara mateix."
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr "Usuaris destacats"
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr "Usuaris destacats, pàgina %d"
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr "Una selecció d'alguns dels millors usuaris a %s"
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr "Aquest usuari t'ha bloquejat com a subscriptor."
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr "No ID"
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr "Logo del grup"
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr "Pots pujar una imatge de logo per al grup."
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-msgid "Logo updated."
-msgstr "Logo actualitzat."
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-msgid "Failed updating logo."
-msgstr "Error en actualitzar logo."
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr "%s membre/s en el grup"
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr "%s membre/s en el grup, pàgina %d"
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr "La llista dels usuaris d'aquest grup."
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr "Grups"
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr "Grups, pàgina %d"
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr "%%%%site.name%%%% grups amb qui pots trobar i parlar "
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-msgid "Create a new group"
-msgstr "Crear nou grup"
-
-#: actions/groupsearch.php:57
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. "
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-msgid "Group search"
-msgstr "Cercar grup"
-
-#: actions/imsettings.php:70
-msgid "You can send and receive notices through "
-msgstr "Pots enviar i rebre notificacions a través de "
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr "Adreça Jabber o GTalk, "
-
-#: actions/imsettings.php:147
-msgid "Send me replies through Jabber/GTalk "
-msgstr "Enviar-me avisos per Jabber/GTalk."
-
-#: actions/imsettings.php:321
-#, php-format
-msgid "A confirmation code was sent "
-msgstr "Un codi de confirmació ha estat enviat "
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr "Has d'haver entrat per participar en un grup."
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-msgid "You are already a member of that group"
-msgstr "Ja ets membre d'aquest grup"
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, php-format
-msgid "Could not join user %s to group %s"
-msgstr "No s'ha pogut afegir l'usuari %s al grup %s"
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr "%s s'ha pogut afegir al grup %s"
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr ""
-"Les safates d'entrada han d'estar activades per entrar a formar part dels "
-"grups."
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr "Has d'haver entrat per a poder marxar d'un grup."
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-msgid "No such group."
-msgstr "No s'ha trobat el grup."
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-msgid "You are not a member of that group."
-msgstr "No ets membre d'aquest grup."
-
-#: actions/leavegroup.php:100
-msgid "You may not leave a group while you are its administrator."
-msgstr "No pots abandonar aquest grup mentre en sigui l'administrador."
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-msgid "Could not find membership record."
-msgstr "No s'han trobat registres dels membres."
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, php-format
-msgid "Could not remove user %s to group %s"
-msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr "%s ha abandonat el grup %s"
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr "Accedir al lloc"
-
-#: actions/microsummary.php:69
-msgid "No current status"
-msgstr "No té cap estatus ara mateix"
-
-#: actions/newgroup.php:53
-msgid "New group"
-msgstr "Nou grup"
-
-#: actions/newgroup.php:115 actions/newgroup.php:110
-msgid "Use this form to create a new group."
-msgstr "Utilitza aquest formulari per crear un nou grup."
-
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-msgid "Could not create group."
-msgstr "No s'ha pogut crear el grup."
-
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-msgid "Could not set group membership."
-msgstr "No s'ha pogut establir la pertinença d'aquest grup."
-
-#: actions/newmessage.php:119 actions/newnotice.php:132
-msgid "That's too long. "
-msgstr "Això és massa llarg. "
-
-#: actions/newmessage.php:134
-msgid "Don't send a message to yourself; "
-msgstr "No t'enviïs missatges a tu mateix; "
-
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
-msgid "Notice posted"
-msgstr "Notificació publicada"
-
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr "Ajax Error"
-
-#: actions/nudge.php:85
-msgid ""
-"This user doesn't allow nudges or hasn't confirmed or set his email yet."
-msgstr ""
-"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu "
-"electrònic."
-
-#: actions/nudge.php:94
-msgid "Nudge sent"
-msgstr "Reclamació enviada"
-
-#: actions/nudge.php:97
-msgid "Nudge sent!"
-msgstr "Reclamació enviada!"
-
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-msgid "OpenID login"
-msgstr "Accés OpenID"
-
-#: actions/openidsettings.php:128
-msgid "Removing your only OpenID "
-msgstr "Eliminar OpenID"
-
-#: actions/othersettings.php:60
-msgid "Other Settings"
-msgstr "Altres configuracions"
-
-#: actions/othersettings.php:71
-msgid "Manage various other options."
-msgstr "Gestionar altres vàries opcions."
-
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr "Auto-escurçament de la URL"
-
-#: actions/othersettings.php:112
-msgid "Service"
-msgstr "Servei"
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
-#: actions/othersettings.php:118
-msgid "Automatic shortening service to use."
-msgstr "Servei d'auto-escurçament a utilitzar."
-
-#: actions/othersettings.php:144 actions/othersettings.php:146
-#: actions/othersettings.php:153
-msgid "URL shortening service is too long (max 50 chars)."
-msgstr ""
-"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)."
-
-#: actions/passwordsettings.php:69
-msgid "Change your password."
-msgstr "Canviar contrasenya"
-
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
-#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
-msgid "Password change"
-msgstr "Contrasenya canviada."
-
-#: actions/peopletag.php:35 actions/peopletag.php:70
-#, php-format
-msgid "Not a valid people tag: %s"
-msgstr "Etiqueta no vàlida per a la gent: %s"
-
-#: actions/peopletag.php:47 actions/peopletag.php:144
-#, php-format
-msgid "Users self-tagged with %s - page %d"
-msgstr "Usuaris que s'han etiquetat %s - pàgina %d"
-
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr "Aquests són usuaris que s'han etiquetat ells mateixos \"%s\" "
-
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
-msgid "Profile information"
-msgstr "Informació del perfil"
-
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
-#: actions/profilesettings.php:140
-msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
-msgstr ""
-"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat "
-"por espais"
-
-#: actions/profilesettings.php:144
-msgid "Automatically subscribe to whoever "
-msgstr "Automàticament subscriure's a tothom "
-
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
-#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Etiqueta no vàlida: \"%s\""
-
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
-#: actions/profilesettings.php:336
-msgid "Couldn't save tags."
-msgstr "No s'han pogut guardar les etiquetes."
-
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
-#: actions/public.php:129
-#, php-format
-msgid "Public timeline, page %d"
-msgstr "Línia temporal pública, pàgina %d"
-
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr "No s'ha pogut recuperar la conversa pública."
-
-#: actions/public.php:220
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-msgstr ""
-"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/"
-"wiki/Microblogging) "
-
-#: actions/publictagcloud.php:57
-msgid "Public tag cloud"
-msgstr "Núvol públic d'etiquetes"
-
-#: actions/publictagcloud.php:63
-#, php-format
-msgid "These are most popular recent tags on %s "
-msgstr "Aquestes són les etiquetes recents més populars a %s "
-
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
-msgid "Tag cloud"
-msgstr "Núvol d'etiquetes"
-
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
-msgid "Sorry, only invited people can register."
-msgstr "Ho senti, però només la gent convidada pot registrar-se."
-
-#: actions/register.php:149
-msgid "You can't register if you don't "
-msgstr "No pots registrar-te si no "
-
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr "Amb aquest formulari pots crear "
-
-#: actions/register.php:368
-msgid "1-64 lowercase letters or numbers, "
-msgstr ""
-"1-64 lletres en minúscula o números, sense signes de puntuació o espais, "
-
-#: actions/register.php:382 actions/register.php:386
-msgid "Used only for updates, announcements, "
-msgstr "Utilitzat només per a actualitzacions, anuncis, "
-
-#: actions/register.php:398
-msgid "URL of your homepage, blog, "
-msgstr "URL del teu web, blog o perfil en un altre lloc, "
-
-#: actions/register.php:404
-msgid "Describe yourself and your "
-msgstr "Explica'ns alguna cosa sobre tu "
-
-#: actions/register.php:410
-msgid "Where you are, like \"City, "
-msgstr "On ets, per exemple \"Ciutat, "
-
-#: actions/register.php:432
-msgid " except this private data: password, "
-msgstr " excepte les següents dades privades: contrasenya, "
-
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. "
-
-#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr "(Hauries de rebre un missatge per correu electrònic "
-
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
-msgstr "Aquest és un perfil local! Entra per subscriure-t'hi."
-
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
-#: actions/replies.php:127
-#, php-format
-msgid "Replies to %s, page %d"
-msgstr "Respostes a %s, pàgina %d"
-
-#: actions/showfavorites.php:79
-#, php-format
-msgid "%s favorite notices, page %d"
-msgstr "%s notificacions favorites, pàgina %d"
-
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
-#, php-format
-msgid "%s group"
-msgstr "%s grup"
-
-#: actions/showgroup.php:79 actions/showgroup.php:84
-#, php-format
-msgid "%s group, page %d"
-msgstr "%s grup, pàgina %d"
-
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
-msgid "Group profile"
-msgstr "Perfil del grup"
-
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
-msgid "URL"
-msgstr "URL"
-
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
-msgid "Note"
-msgstr "Avisos"
-
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
-msgid "Group actions"
-msgstr "Accions del grup"
-
-#: actions/showgroup.php:323 actions/showgroup.php:304
-#, php-format
-msgid "Notice feed for %s group"
-msgstr "Feed d'avisos del grup %s"
-
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
-msgid "Members"
-msgstr "Membres"
-
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
-msgid "(None)"
-msgstr "(Cap)"
-
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
-msgid "All members"
-msgstr "Tots els membres"
-
-#: actions/showgroup.php:378
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
-msgstr ""
-"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]"
-"(http://ca.wikipedia.org/wiki/Microblogging)"
-
-#: actions/showmessage.php:98
-msgid "Only the sender and recipient "
-msgstr "Només el remitent i el destinatari "
-
-#: actions/showstream.php:73 actions/showstream.php:78
-#: actions/showstream.php:79
-#, php-format
-msgid "%s, page %d"
-msgstr "%s, pàgina %d"
-
-#: actions/showstream.php:143
-msgid "'s profile"
-msgstr "perfil"
-
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-msgid "User profile"
-msgstr "Perfil de l'usuari"
-
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
-msgstr "Foto"
-
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
-msgstr "Accions de l'usuari"
-
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
-msgstr "Enviar un missatge directe a aquest usuari"
-
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
-msgstr "Missatge"
-
-#: actions/showstream.php:451 lib/profileaction.php:157
-msgid "All subscribers"
-msgstr "Tots els subscriptors"
-
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr "Tots els grups"
-
-#: actions/showstream.php:542
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
-msgstr ""
-"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://"
-"ca.wikipedia.org/wiki/Microblogging) "
-
-#: actions/smssettings.php:128
-msgid "Phone number, no punctuation or spaces, "
-msgstr "Número de telèfon, sense puntuacions ni espais, "
-
-#: actions/smssettings.php:162
-msgid "Send me notices through SMS; "
-msgstr "Enviar-me avisos per SMS; "
-
-#: actions/smssettings.php:335
-msgid "A confirmation code was sent to the phone number you added. "
-msgstr ""
-"El codi de confirmació s'ha enviat al número de telèfon que tens afegit. "
-
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:465
msgid "Mobile carrier"
msgstr "Transport mòbil"
+#: actions/smssettings.php:469
+msgid "Select a carrier"
+msgstr "Selecciona un transport"
+
+#: actions/smssettings.php:476
+#, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que "
+"accepti SMS a través del correu electrònic, però no està a la llista, "
+"envia'ns un correu electrònic per fer-nos-ho saber %s."
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr "No hi ha cap codi entrat"
+
#: actions/subedit.php:70
msgid "You are not subscribed to that profile."
msgstr "No estàs subscrit a aquest perfil."
@@ -5020,1744 +2992,13 @@ msgid "%s subscribers, page %d"
msgstr "%s subscriptors, pàgina %d"
#: actions/subscribers.php:63
-msgid "These are the people who listen to "
-msgstr "Aquestes són les persones que escolten "
+msgid "These are the people who listen to your notices."
+msgstr "Aquestes són les persones que escolten els teus avisos."
#: actions/subscribers.php:67
#, php-format
-msgid "These are the people who "
-msgstr "Aquestes són les persones que "
-
-#: actions/subscriptions.php:52
-#, php-format
-msgid "%s subscriptions"
-msgstr "%s subscripcions"
-
-#: actions/subscriptions.php:54
-#, php-format
-msgid "%s subscriptions, page %d"
-msgstr "%s subscripcions, pàgina %d"
-
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices "
-msgstr "Aquestes són les persones les notícies dels quals "
-
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose "
-msgstr "Aquestes són les persones les quals"
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-msgid "Jabber"
-msgstr "Jabber"
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr "Notificació etiquetada amb %s, pàgina %d"
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr "Missatges etiquetats \"%s\", més recents primer"
-
-#: actions/tagother.php:33
-msgid "Not logged in"
-msgstr "No connectat."
-
-#: actions/tagother.php:39
-msgid "No id argument."
-msgstr "No argument de la id."
-
-#: actions/tagother.php:65
-#, php-format
-msgid "Tag %s"
-msgstr "Etiqueta %s"
-
-#: actions/tagother.php:141
-msgid "Tag user"
-msgstr "Etiqueta usuari"
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat "
-"per espais"
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr "Ha ocorregut algun problema amb la teva sessió."
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit "
-"a tu."
-
-#: actions/tagother.php:198 actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "No s'han pogut guardar les etiquetes."
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr ""
-"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i "
-"subscripcions."
-
-#: actions/tagrss.php:35
-msgid "No such tag."
-msgstr "No existeix aquesta etiqueta."
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, php-format
-msgid "Microblog tagged with %s"
-msgstr "Microblog etiquetat com %s"
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr "Ha fallat el bloqueig d'usuari."
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr "Ha fallat el desbloqueig d'usuari."
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-msgid "Not found."
-msgstr "No s'ha trobat."
-
-#: actions/twittersettings.php:71
-msgid "Add your Twitter account to automatically send "
-msgstr "Afegeix el teu compte Twitter per automàticament enviar "
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr "Usuari Twitter"
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-msgid "Twitter password"
-msgstr "Contrasenya Twitter"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr "Amics Twitter"
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr "Nom d'usuari sols pot contenir números, "
-
-#: actions/twittersettings.php:341
-#, php-format
-msgid "Unable to retrieve account information "
-msgstr "No s'ha pogut obtenir informació del compte "
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-msgid "Error removing the block."
-msgstr "Error al moure el block."
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-msgid "No profile id in request."
-msgstr "No id en el perfil sol·licitat."
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-msgid "No profile with that id."
-msgstr "No hi ha cap perfil amb aquesta id."
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-msgid "Unsubscribed"
-msgstr "No subscrit"
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr "%s grups"
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr "%s grups, pàgina %d"
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-msgid "Problem saving notice. Unknown user."
-msgstr "Problema al guardar la notificació. Usuari desconegut."
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-"Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
-"minuts."
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr "Ha estat bandejat de publicar notificacions en aquest lloc."
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-msgid "Upload an avatar"
-msgstr "Pujar un avatar"
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr "Altres"
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr "Altres opcions"
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, php-format
-msgid "%s - %s"
-msgstr "%s - %s"
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr "Pàgina sense titol"
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr "Navegació primària del lloc"
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr "Perfil personal i línia temporal dels amics"
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr "Cercar gent o text"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Account"
-msgstr "Compte"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr "Canviar correu electrònic, avatar, contrasenya, perfil"
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr "Connectar a missatgeria instantània, SMS, Twitter"
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr "Sortir d'aquest lloc"
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr "Accedir a aquest lloc"
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-msgid "Create an account"
-msgstr "Crear nou compte"
-
-#: lib/action.php:341 lib/action.php:418
-msgid "Login with OpenID"
-msgstr "Accedir amb OpenID"
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-msgid "Help me!"
-msgstr "Ajuda'm"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-msgid "Site notice"
-msgstr "Avís del lloc"
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr "Vistes locals"
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-msgid "Page notice"
-msgstr "Notificació pàgina"
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-msgid "Secondary site navigation"
-msgstr "Navegació del lloc secundària"
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr "Llicència del programari StatusNet"
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-msgid "All "
-msgstr "Tot "
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-msgid "license."
-msgstr "llicència."
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block this user"
-msgstr "Bloquejar aquest usuari"
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr "Bloquejar"
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-msgid "Disfavor this notice"
-msgstr "Deixar de tenir favorita aquesta notificació"
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit "
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-msgid " a new account."
-msgstr " un nou compte."
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-msgid "Published"
-msgstr "Publicat"
-
-#: lib/favorform.php:114 lib/favorform.php:140
-msgid "Favor this notice"
-msgstr "Fer favorita aquesta notificació"
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr "Exportar data"
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr "Filtre d'etiquetes"
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr "Tot"
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr "Etiqueta"
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-msgid "Choose a tag to narrow list"
-msgstr "Elegeix una etiqueta para reduir la llista"
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-msgid "Go"
-msgstr "Anar"
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-msgid "URL of the homepage or blog of the group or topic"
-msgstr "URL del teu web, blog del grup u tema"
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-msgid "Description"
-msgstr "Descripció"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-msgid "Describe the group or topic in 140 chars"
-msgstr "Descriu el grup amb 140 caràcters"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr ""
-"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\""
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr "Grup"
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-msgid "Admin"
-msgstr "Admin"
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, php-format
-msgid "Edit %s group properties"
-msgstr "Editar propietats del grup %s"
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-msgid "Logo"
-msgstr "Logo"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, php-format
-msgid "Add or edit %s logo"
-msgstr "Afegir o editar logo %s"
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr "Grups amb més membres"
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr "Grups amb més entrades"
-
-#: lib/grouptagcloudsection.php:56
-#, php-format
-msgid "Tags in %s group's notices"
-msgstr "Etiquetes en les notificacions del grup %s"
-
-#: lib/htmloutputter.php:104
-msgid "This page is not available in a "
-msgstr "Aquesta pàgina no està disponible en "
-
-#: lib/joinform.php:114
-msgid "Join"
-msgstr "Inici de sessió"
-
-#: lib/leaveform.php:114
-msgid "Leave"
-msgstr "Abandonar"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-msgid "Login with a username and password"
-msgstr "Accedir amb el nom d'usuari i contrasenya"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-msgid "Sign up for a new account"
-msgstr "Crear nou compte"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr "Accedir o registrar-se amb OpenID"
-
-#: lib/mail.php:175
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-"Ei, %s.\n"
-"\n"
-
-#: lib/mail.php:236
-#, php-format
-msgid "%1$s is now listening to "
-msgstr "%1$s ara està escoltant "
-
-#: lib/mail.php:254 lib/mail.php:253
-#, php-format
-msgid "Location: %s\n"
-msgstr "Ubicació: %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, php-format
-msgid "Homepage: %s\n"
-msgstr "Pàgina personal: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-"Biografia: %s\n"
-"\n"
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr "Has estat reclamat per %s"
-
-#: lib/mail.php:465
-#, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr "%1$s (%2$s) vol saber què estàs fent "
-
-#: lib/mail.php:555
-#, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr "%1$s ha afegit la teva notificació des de %2$s."
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-msgid "From"
-msgstr "Des de"
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-msgid "Send a direct notice"
-msgstr "Enviar notificació directa"
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-msgid "Send a notice"
-msgstr "Enviar notificació"
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-msgid "Available characters"
-msgstr "Caràcters disponibles"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-msgid "in reply to"
-msgstr "en resposta a"
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-msgid "Reply to this notice"
-msgstr "respondre a aquesta nota"
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-msgid "Reply"
-msgstr "Respondre"
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-msgid "Delete this notice"
-msgstr "Eliminar aquesta nota"
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-msgid "Delete"
-msgstr "Eliminar"
-
-#: lib/nudgeform.php:116
-msgid "Nudge this user"
-msgstr "Reclamar aquest usuari"
-
-#: lib/nudgeform.php:128
-msgid "Nudge"
-msgstr "Reclamar"
-
-#: lib/nudgeform.php:128
-msgid "Send a nudge to this user"
-msgstr "Enviar una reclamació a aquest usuari"
-
-#: lib/personaltagcloudsection.php:56
-#, php-format
-msgid "Tags in %s's notices"
-msgstr "Etiquetes en les notificacions de %s's"
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-msgid "(none)"
-msgstr "(cap)"
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Públic"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr "Grups d'usuaris"
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr "Etiquetes recents"
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr "Destacat"
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-msgid "Popular"
-msgstr "Popular"
-
-#: lib/searchgroupnav.php:82
-msgid "Notice"
-msgstr "Avisos"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr "Trobar un grup en aquest lloc"
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr "Secció sense títol"
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, php-format
-msgid "People %s subscribes to"
-msgstr "Persones %s subscrites a"
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, php-format
-msgid "People subscribed to %s"
-msgstr "Persones subscrites a %s"
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, php-format
-msgid "Groups %s is a member of"
-msgstr "%s grups són membres de"
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr "Convidar amics i companys perquè participin a %s"
-
-#: lib/subs.php:53 lib/subs.php:52
-msgid "User has blocked you."
-msgstr "Un usuari t'ha bloquejat."
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-msgid "Subscribe to this user"
-msgstr "Subscriure's a aquest usuari"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr "Cap"
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr "Que més publiquen"
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-msgid "Unblock this user"
-msgstr "Desbloquejar aquest usuari"
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr "Desbloquejar"
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr "Deixar d'estar subscrit des d'aquest usuari"
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Feed per a amics de %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Feed per a amics de %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Feed per a amics de %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s i amics"
-
-#: actions/avatarsettings.php:78
-#, fuzzy, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr "Pots pujar el teu avatar personal."
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Avatar actualitzat."
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-#, fuzzy
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, "
-"no ho podràs desfer."
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-#, fuzzy
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
-"us plau."
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-#, fuzzy
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat."
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, fuzzy, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr "Pots pujar una imatge de logo per al grup."
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-#, fuzzy
-msgid "Pick a square area of the image to be the logo."
-msgstr ""
-"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu "
-"avatar."
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, fuzzy, php-format
-msgid "Microblog by %s group"
-msgstr "Microblog de %s"
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes "
-"de cerca amb espais; han de ser majors a 3 caràcters."
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-#, fuzzy
-msgid "Only logged-in users can send direct messages."
-msgstr "Error al enviar el missatge directe."
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr "Cerca \"%s\" al flux"
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr ""
-"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i "
-"contrasenya abans de canviar la teva configuració."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-#, fuzzy
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr "Feed del flux públic"
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-#, fuzzy
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr "Feed del flux públic"
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Feed del flux públic"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr ""
-"excepte les següents dades privades: contrasenya, adreça de correu "
-"electrònic, adreça de missatgeria instantània, número de telèfon."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Crear"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Perfil del grup"
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "perfil"
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, fuzzy, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, fuzzy, php-format
-msgid "FOAF for %s"
-msgstr "Safata de sortida per %s"
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-#, fuzzy
-msgid "Edit Avatar"
-msgstr "Avatar"
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Configuració del perfil"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr ""
-"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa "
-"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les "
-"instruccions per utilitzar-lo."
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "Aquest usuari no existeix"
-
-#: actions/twittersettings.php:72
-#, fuzzy
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes "
-"a Twitter, "
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, fuzzy, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter."
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-"Si us plau, revisa aquestes dades per a estar segur que desitges "
-"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als "
-"avisos de ningú, clica \"Cancel·lar\"."
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-#, fuzzy
-msgid "Search for more groups"
-msgstr "Cercar gent o text"
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-#, fuzzy
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-"Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
-"minuts."
-
-#: lib/action.php:406 lib/action.php:425
-#, fuzzy
-msgid "Connect to SMS, Twitter"
-msgstr "Connectar a missatgeria instantània, SMS, Twitter"
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-#, fuzzy
-msgid "Badge"
-msgstr "Reclamar"
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit "
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, fuzzy, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-"%1$s ara està escoltant els teus avisos a %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Atentament,\n"
-"%4$s.\n"
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-#, fuzzy
-msgid "Search site"
-msgstr "Cercar"
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-#, fuzzy
-msgid "No such attachment."
-msgstr "No existeix aquest document."
-
-#: actions/block.php:149
-#, fuzzy
-msgid "Do not block this user from this group"
-msgstr "La llista dels usuaris d'aquest grup."
-
-#: actions/block.php:150
-#, fuzzy
-msgid "Block this user from this group"
-msgstr "La llista dels usuaris d'aquest grup."
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "Perfil de l'usuari"
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s i amics, pàgina %d"
-
-#: actions/blockedfromgroup.php:108
-#, fuzzy
-msgid "A list of the users blocked from joining this group."
-msgstr "La llista dels usuaris d'aquest grup."
-
-#: actions/blockedfromgroup.php:281
-#, fuzzy
-msgid "Unblock user from group"
-msgstr "Ha fallat el desbloqueig d'usuari."
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Codi de confirmació"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "No es pot esborrar la notificació."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, fuzzy, php-format
-msgid "Invalid alias: \"%s\""
-msgstr "Etiqueta no vàlida: \"%s\""
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Aquest sobrenom ja existeix. Prova un altre. "
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "No es pot crear favorit."
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "Nou avís"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "Nou avís"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-#, fuzzy
-msgid "Not a valid invitation code."
-msgstr "Sobrenom no vàlid."
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-#, fuzzy
-msgid "No group specified."
-msgstr "No s'ha especificat perfil."
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-#, fuzzy
-msgid "User is already blocked from group."
-msgstr "Un usuari t'ha bloquejat."
-
-#: actions/groupblock.php:100
-#, fuzzy
-msgid "User is not a member of group."
-msgstr "No ets membre d'aquest grup."
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-#, fuzzy
-msgid "Block user from group"
-msgstr "Usuari bloquejat."
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-#, fuzzy
-msgid "You must be logged in to edit a group."
-msgstr "Has d'haver entrat per crear un grup."
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-#, fuzzy
-msgid "Group design"
-msgstr "Grups"
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "No s'ha pogut actualitzar l'usuari."
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-#, fuzzy
-msgid "Unable to save your design settings!"
-msgstr "No s'ha pogut guardar la teva configuració de Twitter!"
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Preferències de sincronització guardades."
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-#, fuzzy
-msgid "Make user an admin of the group"
-msgstr "Has de ser admin per editar aquest grup"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-#, fuzzy
-msgid "Make Admin"
-msgstr "Admin"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-#, fuzzy
-msgid "No results."
-msgstr "Cap resultat"
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-#, fuzzy
-msgid "User is not blocked from group."
-msgstr "Un usuari t'ha bloquejat."
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-#, fuzzy
-msgid "Message sent"
-msgstr "Missatge"
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "No s'ha pogut guardar el perfil."
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, fuzzy, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix "
-"compte d'usuari. Administra els teus OpenID associats aquí."
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-#, fuzzy
-msgid "View profile designs"
-msgstr "Configuració del perfil"
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, fuzzy, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/"
-"wiki/Microblogging) "
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova "
-"que t'enviarem al correu electrònic que tinguis posat al teu compte."
-
-#: actions/recoverpassword.php:158
-#, fuzzy
-msgid "You've been identified. Enter a new password below. "
-msgstr "T'has identificat. Escriu una nova contrasenya a continuació."
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Recuperació de contrasenya sol·licitada"
-
-#: actions/register.php:86 actions/register.php:92
-#, fuzzy
-msgid "Sorry, invalid invitation code."
-msgstr "Error amb el codi de confirmació."
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Subscriure's a aquest usuari"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "%s notificacions favorites, pàgina %d"
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr "Feed d'avisos del grup %s"
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr "Feed d'avisos del grup %s"
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, fuzzy, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr "Feed d'avisos del grup %s"
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, fuzzy, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]"
-"(http://ca.wikipedia.org/wiki/Microblogging)"
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-#, fuzzy
-msgid "Admins"
-msgstr "Admin"
-
-#: actions/shownotice.php:101
-#, fuzzy
-msgid "Not a local notice"
-msgstr "No existeix aquest usuari."
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, fuzzy, php-format
-msgid " tagged %s"
-msgstr "Aviso etiquetats amb %s"
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, fuzzy, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr "Feed d'avisos del grup %s"
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, fuzzy, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
-msgstr ""
-"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://"
-"ca.wikipedia.org/wiki/Microblogging) "
+msgid "These are the people who listen to %s's notices."
+msgstr "Aquestes són les persones que escolten els avisos de %s."
#: actions/subscribers.php:108
msgid ""
@@ -6777,7 +3018,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, php-format
+msgid "%s subscriptions"
+msgstr "%s subscripcions"
+
+#: actions/subscriptions.php:54
+#, php-format
+msgid "%s subscriptions, page %d"
+msgstr "%s subscripcions, pàgina %d"
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr "Aquestes són les persones que escoltes."
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "Aquestes són les persones que %s escolta."
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6787,73 +3047,224 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s ara està escoltant "
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+msgid "Jabber"
+msgstr "Jabber"
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr "SMS"
+
+#: actions/tagother.php:33
+msgid "Not logged in"
+msgstr "No connectat."
+
+#: actions/tagother.php:39
+msgid "No id argument."
+msgstr "No argument de la id."
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr "Etiqueta %s"
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+msgid "User profile"
+msgstr "Perfil de l'usuari"
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr "Foto"
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr "Etiqueta usuari"
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat "
+"per espais"
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit "
+"a tu."
+
+#: actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "No s'han pogut guardar les etiquetes."
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr ""
+"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i "
+"subscripcions."
+
+#: actions/tag.php:68
+#, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr "Notificació etiquetada amb %s, pàgina %d"
+
+#: actions/tag.php:86
#, fuzzy, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr "Feed d'avisos de %s"
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Feed d'avisos de %s"
+
+#: actions/tag.php:98
#, fuzzy, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr "Feed d'avisos de %s"
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
-#, fuzzy
-msgid "This status is already a favorite!"
-msgstr "Aquesta nota ja és favorita."
+#: actions/tagrss.php:35
+msgid "No such tag."
+msgstr "No existeix aquesta etiqueta."
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
-#, fuzzy
-msgid "That status is not a favorite!"
-msgstr "Aquesta notificació no és un favorit!"
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
+msgstr "Mètode API en construcció."
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
-#, fuzzy
-msgid "Could not determine source user."
-msgstr "No s'ha pogut recuperar la conversa pública."
+#: actions/unsubscribe.php:77
+msgid "No profile id in request."
+msgstr "No id en el perfil sol·licitat."
-#: actions/twitapifriendships.php:215
-#, fuzzy
-msgid "Target user not specified."
-msgstr "No has especificat el destinatari."
+#: actions/unsubscribe.php:84
+msgid "No profile with that id."
+msgstr "No hi ha cap perfil amb aquesta id."
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
-#, fuzzy
-msgid "Could not find target user."
-msgstr "No es pot trobar cap estatus."
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr "No subscrit"
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
-#, fuzzy, php-format
-msgid "%1$s / Updates mentioning %2$s"
-msgstr "%1$s / Notificacions contestant a %2$s"
-
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Updates tagged with %1$s on %2$s!"
-msgstr "Actualitzacions de %1$s a %2$s!"
-
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#, php-format
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Autoritzar subscripció"
+
+#: actions/userauthorization.php:110
+#, fuzzy
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
+msgstr ""
+"Si us plau, revisa aquestes dades per a estar segur que desitges "
+"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als "
+"avisos de ningú, clica \"Cancel·lar\"."
+
+#: actions/userauthorization.php:188
#, fuzzy
msgid "License"
msgstr "llicència."
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Acceptar"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscriure's a aquest usuari"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr "Rebutjar"
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "%s subscripcions"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr "Cap petició d'autorització!"
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr "Subscripció autoritzada"
+
+#: actions/userauthorization.php:249
+#, fuzzy
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. "
+"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. "
+"El teu identificador de subscripció és:"
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr "Subscripció rebutjada"
+
+#: actions/userauthorization.php:261
+#, fuzzy
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix "
+"de nou les instruccions per a saber com rebutjar la subscripció completament."
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, fuzzy, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "No es pot llegir l'URL de l'avatar '%s'"
+
+#: actions/userauthorization.php:348
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "Tipus d'imatge incorrecte per a '%s'"
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr "Cap identificador."
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
#, fuzzy
msgid "Profile design"
@@ -6869,6 +3280,16 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr "%s grups, pàgina %d"
+
+#: actions/usergroups.php:130
+#, fuzzy
+msgid "Search for more groups"
+msgstr "Cercar gent o text"
+
#: actions/usergroups.php:153
#, fuzzy, php-format
msgid "%s is not a member of any group."
@@ -6879,48 +3300,298 @@ msgstr "No ets membre d'aquest grup."
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr "No s'ha pogut inserir el missatge."
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr "No s'ha pogut inserir el missatge amb la nova URI."
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr "Hashtag de l'error de la base de dades:%s"
+
+#: classes/Notice.php:179
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Problema en guardar l'avís."
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+msgid "Problem saving notice. Unknown user."
+msgstr "Problema al guardar la notificació. Usuari desconegut."
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+"Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
+"minuts."
+
+#: classes/Notice.php:194
+#, fuzzy
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+"Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
+"minuts."
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr "Ha estat bandejat de publicar notificacions en aquest lloc."
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr "Problema en guardar l'avís."
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "Error de BD en inserir resposta: %s"
+
#: classes/User.php:333
#, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr "Missatge per a %1$s a %2$s"
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr "Perfil"
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr "Canviar les preferències del teu perfil"
+
+#: lib/accountsettingsaction.php:112
+msgid "Upload an avatar"
+msgstr "Pujar un avatar"
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr "Canviar la teva contrasenya"
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr "Canviar correu electrònic"
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "Perfil de l'usuari"
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr "Altres"
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr "Altres opcions"
+
+#: lib/action.php:144
+#, php-format
+msgid "%s - %s"
+msgstr "%s - %s"
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr "Pàgina sense titol"
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr "Navegació primària del lloc"
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Inici"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr "Perfil personal i línia temporal dels amics"
+
+#: lib/action.php:432
+msgid "Account"
+msgstr "Compte"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr "Canviar correu electrònic, avatar, contrasenya, perfil"
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Connectar-se"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "No s'ha pogut redirigir al servidor: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr "Invitar"
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Convidar amics i companys perquè participin a %s"
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Sortir"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr "Sortir d'aquest lloc"
+
+#: lib/action.php:450
+msgid "Create an account"
+msgstr "Crear nou compte"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr "Accedir a aquest lloc"
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Ajuda"
+
+#: lib/action.php:456
+msgid "Help me!"
+msgstr "Ajuda'm"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr "Cercar"
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr "Cercar gent o text"
+
+#: lib/action.php:480
+msgid "Site notice"
+msgstr "Avís del lloc"
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr "Vistes locals"
+
+#: lib/action.php:612
+msgid "Page notice"
+msgstr "Notificació pàgina"
+
+#: lib/action.php:714
+msgid "Secondary site navigation"
+msgstr "Navegació del lloc secundària"
+
+#: lib/action.php:721
+msgid "About"
+msgstr "Sobre"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "Preguntes freqüents"
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr "Privacitat"
+
+#: lib/action.php:732
+msgid "Source"
+msgstr "Font"
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Posar-se en contacte"
+
+#: lib/action.php:736
+#, fuzzy
+msgid "Badge"
+msgstr "Reclamar"
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr "Llicència del programari StatusNet"
+
+#: lib/action.php:767
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%"
+"site.broughtbyurl%%)."
+
+#: lib/action.php:769
+#, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr "**%%site.name%%** és un servei de microblogging."
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+"Utilitza el software de microblogging [StatusNet](http://status.net), versió "
+"%s, disponible sota la [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+
+#: lib/action.php:785
+#, fuzzy
+msgid "Site content license"
+msgstr "Llicència del programari StatusNet"
+
+#: lib/action.php:794
+msgid "All "
+msgstr "Tot "
+
+#: lib/action.php:799
+msgid "license."
+msgstr "llicència."
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr "Paginació"
+
+#: lib/action.php:1062
+msgid "After"
+msgstr "Posteriors"
+
+#: lib/action.php:1070
+msgid "Before"
+msgstr "Anteriors"
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr "Ha ocorregut algun problema amb la teva sessió."
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6942,6 +3613,223 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr "Resultats de les comandes"
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr "Comanda completada"
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr "Comanda fallida"
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr "Perdona, aquesta comanda no està implementada."
+
+#: lib/command.php:88
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat"
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, fuzzy, php-format
+msgid "Nudge sent to %s"
+msgstr "Reclamació enviada"
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr "L'usuari no té última nota"
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr "Nota marcada com a favorita."
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr "Nom complet: %s"
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr "Localització: %s"
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr "Pàgina web: %s"
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr "Sobre tu: %s"
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, fuzzy, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr "Error al enviar el missatge directe."
+
+#: lib/command.php:431
+#, fuzzy, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
+
+#: lib/command.php:439
+#, fuzzy, php-format
+msgid "Reply to %s sent"
+msgstr "respondre a aquesta nota"
+
+#: lib/command.php:441
+#, fuzzy
+msgid "Error saving notice."
+msgstr "Problema en guardar l'avís."
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr "Especifica el nom de l'usuari a que vols subscriure't"
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr "Subscrit a %s"
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit"
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr "Has deixat d'estar subscrit a %s"
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr "Comanda encara no implementada."
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr "Notificacions off."
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr "No es poden posar en off les notificacions."
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr "Notificacions on."
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr "No es poden posar en on les notificacions."
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "No s'ha pogut crear el formulari OpenID: %s"
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "Cap codi de confirmació."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+#, fuzzy
+msgid "Go to the installer."
+msgstr "Accedir a aquest lloc"
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr "Missatgeria Instantània"
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr "Actualitzacions per Missatgeria Instantània"
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr "Actualitzacions per SMS"
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -6991,6 +3879,10 @@ msgstr "Connectar-se"
msgid "Sidebar"
msgstr "Cercar"
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr "Text"
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -7012,575 +3904,75 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
+msgid "Disfavor this notice"
+msgstr "Deixar de tenir favorita aquesta notificació"
+
+#: lib/favorform.php:114 lib/favorform.php:140
+msgid "Favor this notice"
+msgstr "Fer favorita aquesta notificació"
+
+#: lib/favorform.php:140
+msgid "Favor"
+msgstr "Favorit"
+
+#: lib/feedlist.php:64
+msgid "Export data"
+msgstr "Exportar data"
+
+#: lib/feed.php:85
+msgid "RSS 1.0"
msgstr ""
-#: lib/groupnav.php:100
-#, fuzzy
-msgid "Blocked"
-msgstr "Bloquejar"
-
-#: lib/groupnav.php:101
-#, fuzzy, php-format
-msgid "%s blocked users"
-msgstr "Usuari bloquejat."
-
-#: lib/groupnav.php:119
-#, fuzzy, php-format
-msgid "Add or edit %s design"
-msgstr "Afegir o editar logo %s"
-
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
+#: lib/feed.php:87
+msgid "RSS 2.0"
msgstr ""
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
+#: lib/feed.php:89
+msgid "Atom"
msgstr ""
-#: lib/mail.php:648
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
+#: lib/feed.php:91
+msgid "FOAF"
msgstr ""
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
-msgstr ""
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr "Filtre d'etiquetes"
-#: lib/mail.php:685
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
-msgstr ""
-
-#: lib/mailbox.php:139
-msgid ""
-"You have no private messages. You can send private message to engage other "
-"users in conversation. People can send you messages for your eyes only."
-msgstr ""
-
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
-#, fuzzy
-msgid "in context"
-msgstr "Cap contingut!"
-
-#: lib/profileaction.php:177
-#, fuzzy
-msgid "User ID"
-msgstr "Usuari"
-
-#: lib/searchaction.php:156 lib/searchaction.php:162
-#, fuzzy
-msgid "Search help"
-msgstr "Cercar"
-
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
-msgstr ""
-
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
-msgstr ""
-
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "La pàgina personal no és un URL vàlid."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
-msgstr ""
-
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "No existeix aquesta etiqueta."
-
-#: actions/apidirectmessage.php:89
-#, fuzzy, php-format
-msgid "Direct messages from %s"
-msgstr "Missatges directes a %s"
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "És massa llarg. Màxim del missatge és 140 caràcters."
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix."
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
-msgstr ""
-
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "la descripció és massa llarga (màx. 140 caràcters)."
-
-#: actions/apigroupjoin.php:110
-#, fuzzy
-msgid "You are already a member of that group."
-msgstr "Ja ets membre d'aquest grup"
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "No s'ha pogut afegir l'usuari %s al grup %s"
-
-#: actions/apigroupleave.php:114
-#, fuzzy
-msgid "You are not a member of this group."
-msgstr "No ets membre d'aquest grup."
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "%s grups"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "%s grups són membres de"
-
-#: actions/apigrouplistall.php:94
-#, fuzzy, php-format
-msgid "groups on %s"
-msgstr "Accions del grup"
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Avatar actualitzat."
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, fuzzy, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr "Massa llarg. La longitud màxima és de 140 caràcters."
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-#, fuzzy
-msgid "Unsupported format."
-msgstr "Format d'imatge no suportat."
-
-#: actions/bookmarklet.php:50
-#, fuzzy
-msgid "Post to "
-msgstr "Foto"
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "la descripció és massa llarga (màx. 140 caràcters)."
-
-#: actions/favoritesrss.php:115
-#, fuzzy, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr "Actualitzacions de %1$s a %2$s!"
-
-#: actions/finishremotesubscribe.php:80
-#, fuzzy
-msgid "User being listened to does not exist."
-msgstr "L'usuari que vols seguir no existeix."
-
-#: actions/finishremotesubscribe.php:106
-#, fuzzy
-msgid "You are not authorized."
-msgstr "No autoritzat."
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés."
-
-#: actions/finishremotesubscribe.php:114
-#, fuzzy
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Versió desconeguda del protocol OMB."
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "No existeix aquest avís."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Hem perdut el nostre arxiu."
-
-#: actions/grouprss.php:133
-#, fuzzy, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr "Actualitzacions de %1$s a %2$s!"
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "Aquesta pàgina no està disponible en "
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no "
-"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova "
-"[OpenID] (%%action.openidlogin%%)."
-
-#: actions/noticesearchrss.php:89
-#, fuzzy, php-format
-msgid "Updates with \"%s\""
-msgstr "Actualitzacions de %1$s a %2$s!"
-
-#: actions/noticesearchrss.php:91
-#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" "
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Connectar-se"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Explica'ns alguna cosa sobre tu "
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "La biografia és massa llarga (màx. 140 caràcters)."
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-#, fuzzy
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr "URL de perfil no vàlid (cap document YADIS)."
-
-#: actions/remotesubscribe.php:176
-#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
-msgstr "Aquest és un perfil local! Entra per subscriure-t'hi."
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "No s'ha pogut obtenir un senyal de petició."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/replies.php:158
-#, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/repliesrss.php:72
-#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr "Missatge per a %1$s a %2$s"
-
-#: actions/showfavorites.php:170
-#, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Feed per a amics de %s"
-
-#: actions/showfavorites.php:177
-#, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Feed per a amics de %s"
-
-#: actions/showfavorites.php:184
-#, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Feed per a amics de %s"
-
-#: actions/showfavorites.php:211
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
-msgstr ""
-
-#: actions/showgroup.php:345
-#, php-format
-msgid "FOAF for %s group"
-msgstr "Safata de sortida per %s"
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Notificació publicada"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "Aquesta pàgina no està disponible en "
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Feed d'avisos de %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
-#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:110
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
-msgstr ""
-"Si us plau, revisa aquestes dades per a estar segur que desitges "
-"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als "
-"avisos de ningú, clica \"Cancel·lar\"."
-
-#: actions/userauthorization.php:249
-#, fuzzy
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. "
-"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. "
-"El teu identificador de subscripció és:"
-
-#: actions/userauthorization.php:261
-#, fuzzy
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix "
-"de nou les instruccions per a saber com rebutjar la subscripció completament."
-
-#: actions/userauthorization.php:296
-#, php-format
-msgid "Listener URI ‘%s’ not found here"
-msgstr ""
-
-#: actions/userauthorization.php:301
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:307
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:322
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:338
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:343
-#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "No es pot llegir l'URL de l'avatar '%s'"
-
-#: actions/userauthorization.php:348
-#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Tipus d'imatge incorrecte per a '%s'"
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "No s'ha pogut redirigir al servidor: %s"
-
-#: lib/action.php:785
-#, fuzzy
-msgid "Site content license"
-msgstr "Llicència del programari StatusNet"
-
-#: lib/command.php:88
-#, fuzzy, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat"
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, fuzzy, php-format
-msgid "Nudge sent to %s"
-msgstr "Reclamació enviada"
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, fuzzy, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
-
-#: lib/command.php:431
-#, fuzzy, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
-
-#: lib/command.php:439
-#, fuzzy, php-format
-msgid "Reply to %s sent"
-msgstr "respondre a aquesta nota"
-
-#: lib/command.php:441
-#, fuzzy
-msgid "Error saving notice."
-msgstr "Problema en guardar l'avís."
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "Cap codi de confirmació."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-#, fuzzy
-msgid "Go to the installer."
-msgstr "Accedir a aquest lloc"
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr "Tot"
#: lib/galleryaction.php:139
#, fuzzy
msgid "Select tag to filter"
msgstr "Selecciona un transport"
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr "Etiqueta"
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr "Elegeix una etiqueta para reduir la llista"
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr "Anar"
+
+#: lib/groupeditform.php:163
+msgid "URL of the homepage or blog of the group or topic"
+msgstr "URL del teu web, blog del grup u tema"
+
#: lib/groupeditform.php:168
#, fuzzy
msgid "Describe the group or topic"
@@ -7591,11 +3983,282 @@ msgstr "Descriu el grup amb 140 caràcters"
msgid "Describe the group or topic in %d characters"
msgstr "Descriu el grup amb 140 caràcters"
+#: lib/groupeditform.php:172
+msgid "Description"
+msgstr "Descripció"
+
+#: lib/groupeditform.php:179
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr ""
+"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\""
+
+#: lib/groupeditform.php:187
+#, php-format
+msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+msgstr ""
+
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr "Grup"
+
+#: lib/groupnav.php:100
+#, fuzzy
+msgid "Blocked"
+msgstr "Bloquejar"
+
+#: lib/groupnav.php:101
+#, fuzzy, php-format
+msgid "%s blocked users"
+msgstr "Usuari bloquejat."
+
+#: lib/groupnav.php:107
+#, php-format
+msgid "Edit %s group properties"
+msgstr "Editar propietats del grup %s"
+
+#: lib/groupnav.php:112
+msgid "Logo"
+msgstr "Logo"
+
+#: lib/groupnav.php:113
+#, php-format
+msgid "Add or edit %s logo"
+msgstr "Afegir o editar logo %s"
+
+#: lib/groupnav.php:119
+#, fuzzy, php-format
+msgid "Add or edit %s design"
+msgstr "Afegir o editar logo %s"
+
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Grups amb més membres"
+
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Grups amb més entrades"
+
+#: lib/grouptagcloudsection.php:56
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr "Etiquetes en les notificacions del grup %s"
+
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis."
+
+#: lib/imagefile.php:75
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "Pots pujar una imatge de logo per al grup."
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr "Càrrega parcial."
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr "Error del sistema en pujar el fitxer."
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr "No és una imatge o és un fitxer corrupte."
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr "Format d'imatge no suportat."
+
+#: lib/imagefile.php:118
+msgid "Lost our file."
+msgstr "Hem perdut el nostre arxiu."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
+msgstr "Tipus de fitxer desconegut"
+
#: lib/jabber.php:192
#, php-format
msgid "notice id: %s"
msgstr "Nou avís"
+#: lib/joinform.php:114
+msgid "Join"
+msgstr "Inici de sessió"
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "Abandonar"
+
+#: lib/logingroupnav.php:80
+msgid "Login with a username and password"
+msgstr "Accedir amb el nom d'usuari i contrasenya"
+
+#: lib/logingroupnav.php:86
+msgid "Sign up for a new account"
+msgstr "Crear nou compte"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
+msgstr "Només l'usuari pot llegir les seves safates de correu."
+
+#: lib/mailbox.php:139
+msgid ""
+"You have no private messages. You can send private message to engage other "
+"users in conversation. People can send you messages for your eyes only."
+msgstr ""
+
+#: lib/mailbox.php:227 lib/noticelist.php:424
+#, fuzzy
+msgid "from"
+msgstr " de "
+
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "Confirmació de l'adreça de correu electrònic"
+
+#: lib/mail.php:174
+#, php-format
+msgid ""
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
+msgstr ""
+
+#: lib/mail.php:235
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr "%1$s ara està escoltant els teus avisos a %2$s."
+
+#: lib/mail.php:240
+#, fuzzy, php-format
+msgid ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
+msgstr ""
+"%1$s ara està escoltant els teus avisos a %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"Atentament,\n"
+"%4$s.\n"
+
+#: lib/mail.php:253
+#, php-format
+msgid "Location: %s\n"
+msgstr "Ubicació: %s\n"
+
+#: lib/mail.php:255
+#, php-format
+msgid "Homepage: %s\n"
+msgstr "Pàgina personal: %s\n"
+
+#: lib/mail.php:257
+#, php-format
+msgid ""
+"Bio: %s\n"
+"\n"
+msgstr ""
+"Biografia: %s\n"
+"\n"
+
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr "Nou correu electrònic per publicar a %s"
+
+#: lib/mail.php:288
+#, php-format
+msgid ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+msgstr ""
+"Tens una nova direcció per publicar a %1$s.\n"
+"\n"
+"Envia un correu electrònic a %2$s per publicar un nou missatge.\n"
+"\n"
+"Més instruccions per al correu electrònic a %3$s.\n"
+"\n"
+"Sincerament teus,\n"
+"%4$s"
+
+#: lib/mail.php:412
+#, php-format
+msgid "%s status"
+msgstr "%s estat"
+
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr "Confirmació SMS"
+
+#: lib/mail.php:462
+#, php-format
+msgid "You've been nudged by %s"
+msgstr "Has estat reclamat per %s"
+
+#: lib/mail.php:466
+#, php-format
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
+msgstr ""
+
+#: lib/mail.php:509
+#, php-format
+msgid "New private message from %s"
+msgstr "Nou missatge privat de %s"
+
+#: lib/mail.php:513
+#, php-format
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
+msgstr ""
+
#: lib/mail.php:554
#, fuzzy, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7642,76 +4305,418 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr " de "
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
msgid "Could not determine file's mime-type!"
msgstr "No s'ha pogut recuperar la conversa pública."
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr "Enviar notificació directa"
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr "A"
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+msgid "Available characters"
+msgstr "Caràcters disponibles"
+
+#: lib/noticeform.php:145
+msgid "Send a notice"
+msgstr "Enviar notificació"
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr "Què tal, %s?"
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+#, fuzzy
+msgid "in context"
+msgstr "Cap contingut!"
+
+#: lib/noticelist.php:498
+msgid "Reply to this notice"
+msgstr "respondre a aquesta nota"
+
+#: lib/noticelist.php:499
+msgid "Reply"
+msgstr "Respondre"
+
+#: lib/nudgeform.php:116
+msgid "Nudge this user"
+msgstr "Reclamar aquest usuari"
+
+#: lib/nudgeform.php:128
+msgid "Nudge"
+msgstr "Reclamar"
+
+#: lib/nudgeform.php:128
+msgid "Send a nudge to this user"
+msgstr "Enviar una reclamació a aquest usuari"
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr "Error en inserir el nou perfil"
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr "Error en inserir avatar"
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr "Error en inserir perfil remot"
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Eliminar nota."
-#: actions/login.php:110 actions/login.php:120
-#, fuzzy
-msgid "Invalid or expired token."
-msgstr "El contingut de l'avís és invàlid"
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "No s'ha pogut inserir una nova subscripció."
-#: lib/command.php:597
-#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "No s'ha pogut crear el formulari OpenID: %s"
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Personal"
-#: lib/command.php:602
+#: lib/personalgroupnav.php:104
+msgid "Replies"
+msgstr "Respostes"
+
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr "Favorits"
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr "Usuari"
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr "Safata d'entrada"
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr "Els teus missatges rebuts"
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr "Safata de sortida"
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr "Els teus missatges enviats"
+
+#: lib/personaltagcloudsection.php:56
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgid "Tags in %s's notices"
+msgstr "Etiquetes en les notificacions de %s's"
+
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Subscripcions"
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "Totes les subscripcions"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Subscriptors"
+
+#: lib/profileaction.php:157
+msgid "All subscribers"
+msgstr "Tots els subscriptors"
+
+#: lib/profileaction.php:177
+#, fuzzy
+msgid "User ID"
+msgstr "Usuari"
+
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Membre des de"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr "Tots els grups"
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Públic"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr "Grups d'usuaris"
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Etiquetes recents"
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "Destacat"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Popular"
+
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "Cercar"
+
+#: lib/searchaction.php:162
+#, fuzzy
+msgid "Search help"
+msgstr "Cercar"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr "Gent"
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr "Trobar gent en aquest lloc"
+
+#: lib/searchgroupnav.php:82
+msgid "Notice"
+msgstr "Avisos"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr "Trobar contingut de les notes"
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr "Trobar un grup en aquest lloc"
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr "Secció sense títol"
+
+#: lib/section.php:106
+msgid "More..."
msgstr ""
-#: lib/imagefile.php:75
+#: lib/subgroupnav.php:83
+#, php-format
+msgid "People %s subscribes to"
+msgstr "Persones %s subscrites a"
+
+#: lib/subgroupnav.php:91
+#, php-format
+msgid "People subscribed to %s"
+msgstr "Persones subscrites a %s"
+
+#: lib/subgroupnav.php:99
+#, php-format
+msgid "Groups %s is a member of"
+msgstr "%s grups són membres de"
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+msgid "(none)"
+msgstr "(cap)"
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+msgid "User has blocked you."
+msgstr "Un usuari t'ha bloquejat."
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr "No pots subscriure."
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr "No pots subscriure a un altre a tu mateix."
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr "No estàs subscrit!"
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "No s'ha pogut eliminar la subscripció."
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr "Cap"
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Que més publiquen"
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr "Deixar d'estar subscrit des d'aquest usuari"
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr "Cancel·lar subscripció"
+
+#: lib/userprofile.php:116
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "Avatar"
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr "Accions de l'usuari"
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Configuració del perfil"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr "Enviar un missatge directe a aquest usuari"
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr "Missatge"
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr "fa pocs segons"
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr "fa un minut"
+
+#: lib/util.php:848
+#, php-format
+msgid "about %d minutes ago"
+msgstr "fa %d minuts"
+
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr "fa una hora"
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr "fa %d hores"
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr "fa un dia"
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr "fa %d dies"
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr "fa un mes"
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr "fa %d mesos"
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr "fa un any"
+
+#: lib/webcolor.php:82
#, fuzzy, php-format
-msgid "That file is too big. The maximum file size is %s."
-msgstr "Pots pujar una imatge de logo per al grup."
+msgid "%s is not a valid color!"
+msgstr "La pàgina personal no és un URL vàlid."
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack - not yet implemented.\n"
-"track off - not yet implemented.\n"
-"untrack all - not yet implemented.\n"
-"tracks - not yet implemented.\n"
-"tracking - not yet implemented.\n"
+#: lib/webcolor.php:123
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex chars."
msgstr ""
+
+#: scripts/maildaemon.php:48
+msgid "Could not parse message."
+msgstr "No es pot analitzar el missatge."
+
+#: scripts/maildaemon.php:53
+msgid "Not a registered user."
+msgstr "Usuari no registrat."
+
+#: scripts/maildaemon.php:57
+msgid "Sorry, that is not your incoming email address."
+msgstr "Perdó, aquest no és el teu correu electrònic entrant permès."
+
+#: scripts/maildaemon.php:61
+msgid "Sorry, no incoming email allowed."
+msgstr "Perdó, no hi ha un correu electrònic entrant permès."
diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo
index 26311ff1f8..f9cf40b2eb 100644
Binary files a/locale/cs/LC_MESSAGES/statusnet.mo and b/locale/cs/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po
index f1d95850c7..096e495479 100644
--- a/locale/cs/LC_MESSAGES/statusnet.po
+++ b/locale/cs/LC_MESSAGES/statusnet.po
@@ -5,49 +5,1525 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:10+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:57:53+0000\n"
"Language-Team: Czech\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "Žádné takové oznámení."
+
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr "Žádný takový uživatel."
+
+#: actions/all.php:84
#, fuzzy, php-format
-msgid " Search Stream for \"%s\""
-msgstr " Hledej \"%s\" ve Streamu"
+msgid "%s and friends, page %d"
+msgstr "%s a přátelé"
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
-msgid ""
-" except this private data: password, email address, IM address, phone number."
-msgstr ""
-" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní "
-"číslo."
-
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr " od "
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid "%s and friends"
+msgstr "%s a přátelé"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/all.php:127
+#, php-format
+msgid ""
+"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/all.php:132
+#, php-format
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s a přátelé"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr ""
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr "Uživatel nemá profil."
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr ""
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr ""
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr ""
+
+#: actions/apidirectmessage.php:89
+#, php-format
+msgid "Direct messages from %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr ""
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr ""
+
+#: actions/apifavoritecreate.php:119
+msgid "This status is already a favorite!"
+msgstr ""
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr ""
+
+#: actions/apifavoritedestroy.php:122
+msgid "That status is not a favorite!"
+msgstr ""
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr ""
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr ""
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr ""
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "Nelze přesměrovat na server: %s"
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr ""
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Nelze aktualizovat uživatele"
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "Nelze aktualizovat uživatele"
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+#, fuzzy
+msgid "Could not create group."
+msgstr "Nelze uložin informace o obrázku"
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "Nelze uložin informace o obrázku"
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+#, fuzzy
+msgid "Could not set group membership."
+msgstr "Nelze vytvořit odebírat"
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer"
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Přezdívku již někdo používá. Zkuste jinou"
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr "Není platnou přezdívkou."
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr "Stránka není platnou URL."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)"
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "Neplatná adresa '%s'"
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Přezdívku již někdo používá. Zkuste jinou"
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "Již jste přihlášen"
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "Nelze přesměrovat na server: %s"
+
+#: actions/apigroupleave.php:114
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "Neodeslal jste nám profil"
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "Nelze vytvořit OpenID z: %s"
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr ""
+
+#: actions/apigrouplistall.php:94
+#, php-format
+msgid "groups on %s"
+msgstr ""
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "Profil"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "Neodeslal jste nám profil"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr ""
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr ""
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Obrázek nahrán"
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr ""
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, fuzzy, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr ""
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+#, fuzzy
+msgid "Unsupported format."
+msgstr "Nepodporovaný formát obrázku."
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr ""
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr ""
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, php-format
+msgid "%s timeline"
+msgstr ""
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr ""
+
+#: actions/apitimelinementions.php:116
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
+msgstr "%1 statusů na %2"
+
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr ""
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr ""
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr ""
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr ""
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Mikroblog od %s"
+
+#: actions/apiusershow.php:96
+#, fuzzy
+msgid "Not found."
+msgstr "Žádný požadavek nebyl nalezen!"
+
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "Žádný takový dokument."
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr "Žádná přezdívka."
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr "Žádná velikost"
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr "Neplatná velikost"
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr "Obrázek"
+
+#: actions/avatarsettings.php:78
+#, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr ""
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr ""
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+#, fuzzy
+msgid "Avatar settings"
+msgstr "Nastavení"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr ""
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr ""
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+msgid "Delete"
+msgstr ""
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr "Upload"
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr ""
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr "Nečekaná forma submission."
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr ""
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr ""
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr "Obrázek nahrán"
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr "Nahrávání obrázku selhalo."
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Obrázek nahrán"
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+#, fuzzy
+msgid "No nickname"
+msgstr "Žádná přezdívka."
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+#, fuzzy
+msgid "No such group"
+msgstr "Žádné takové oznámení."
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "Uživatel nemá profil."
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s a přátelé"
+
+#: actions/blockedfromgroup.php:108
+msgid "A list of the users blocked from joining this group."
+msgstr ""
+
+#: actions/blockedfromgroup.php:281
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "Žádný takový uživatel."
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr ""
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+#, fuzzy
+msgid "Unblock this user"
+msgstr "Žádný takový uživatel."
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "Nepřihlášen"
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr ""
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr ""
+
+#: actions/block.php:111 actions/block.php:134
+#, fuzzy
+msgid "Block user"
+msgstr "Žádný takový uživatel."
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr ""
+
+#: actions/block.php:149
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "Nelze přesměrovat na server: %s"
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr ""
+
+#: actions/block.php:150
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "Žádný takový uživatel."
+
+#: actions/block.php:165
+#, fuzzy
+msgid "You have already blocked this user."
+msgstr "Již jste přihlášen"
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr ""
+
+#: actions/bookmarklet.php:50
+msgid "Post to "
+msgstr ""
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr "Žádný potvrzující kód."
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Potvrzující kód nebyl nalezen"
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr "Tento potvrzující kód vám nepatří!"
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr "Neznámý typ adresy %s"
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr "Adresa již byla potvrzena"
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "Nelze aktualizovat uživatele"
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "Nelze smazat potvrzení emailu"
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Potvrď adresu"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "Adresa \"%s\" byla potvrzena pro váš účet"
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Umístění"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr "Sdělení"
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr "Žádné takové oznámení."
+
+#: actions/deletenotice.php:71
+msgid "Can't delete this notice."
+msgstr ""
+
+#: actions/deletenotice.php:103
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr ""
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr ""
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "Žádné takové oznámení."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+msgid "Delete this notice"
+msgstr ""
+
+#: actions/deletenotice.php:157
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr ""
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr ""
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr "Žádný takový dokument."
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr ""
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr ""
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr ""
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr ""
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
+
+#: actions/editgroup.php:253
+#, fuzzy
+msgid "Could not update group."
+msgstr "Nelze aktualizovat uživatele"
+
+#: actions/editgroup.php:269
+#, fuzzy
+msgid "Options saved."
+msgstr "Nastavení uloženo"
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr ""
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr ""
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Adresa"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr ""
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr "Odstranit"
+
+#: actions/emailsettings.php:113
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr ""
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr ""
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Přidat"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr ""
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr ""
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr ""
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr ""
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Nastavení"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr ""
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr ""
+
+#: actions/emailsettings.php:174
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr ""
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr ""
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr ""
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr ""
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr "Uložit"
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Nastavení uloženo"
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr ""
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr ""
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr ""
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr ""
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr ""
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "Nelze vložit potvrzující kód"
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr "Nečeká žádné potvrzení na zrušení."
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr "Toto je špatná IM adresa"
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Potvrď zrušení"
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr ""
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr "Adresa byla odstraněna"
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr ""
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr ""
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr ""
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr ""
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+#, fuzzy
+msgid "Popular notices"
+msgstr "Žádné takové oznámení."
+
+#: actions/favorited.php:67
+#, fuzzy, php-format
+msgid "Popular notices, page %d"
+msgstr "Žádné takové oznámení."
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr ""
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr ""
+
+#: actions/favoritesrss.php:115
+#, fuzzy, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Mikroblog od %s"
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr ""
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+msgid "Disfavor favorite"
+msgstr ""
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr ""
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr ""
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr ""
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "Nové sdělení"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "Nové sdělení"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "Nečekaná odpověď."
+
+#: actions/finishremotesubscribe.php:80
+#, fuzzy
+msgid "User being listened to does not exist."
+msgstr "Úživatel, kterému nasloucháte neexistuje."
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr "Můžete použít místní odebírání."
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr ""
+
+#: actions/finishremotesubscribe.php:106
+#, fuzzy
+msgid "You are not authorized."
+msgstr "Neautorizován."
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec."
+
+#: actions/finishremotesubscribe.php:114
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "Neznámá verze OMB protokolu."
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr "Chyba při aktualizaci vzdáleného profilu"
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+#, fuzzy
+msgid "No such group."
+msgstr "Žádné takové oznámení."
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "Žádné takové oznámení."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Žádné takové oznámení."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+msgid "No group specified."
+msgstr ""
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+#, fuzzy
+msgid "User is already blocked from group."
+msgstr "Uživatel nemá profil."
+
+#: actions/groupblock.php:100
+#, fuzzy
+msgid "User is not a member of group."
+msgstr "Neodeslal jste nám profil"
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+#, fuzzy
+msgid "Block user from group"
+msgstr "Žádný takový uživatel."
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr ""
+
+#: actions/groupdesignsettings.php:68
+msgid "You must be logged in to edit a group."
+msgstr ""
+
+#: actions/groupdesignsettings.php:141
+msgid "Group design"
+msgstr ""
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Nelze aktualizovat uživatele"
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+msgid "Unable to save your design settings!"
+msgstr ""
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Nastavení uloženo"
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr ""
+
+#: actions/grouplogo.php:150
+#, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr ""
+
+#: actions/grouplogo.php:362
+msgid "Pick a square area of the image to be the logo."
+msgstr ""
+
+#: actions/grouplogo.php:396
+#, fuzzy
+msgid "Logo updated."
+msgstr "Obrázek nahrán"
+
+#: actions/grouplogo.php:398
+#, fuzzy
+msgid "Failed updating logo."
+msgstr "Nahrávání obrázku selhalo."
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr ""
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr ""
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr ""
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+msgid "Admin"
+msgstr ""
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr ""
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+#, fuzzy
+msgid "Block this user"
+msgstr "Žádný takový uživatel."
+
+#: actions/groupmembers.php:441
+msgid "Make user an admin of the group"
+msgstr ""
+
+#: actions/groupmembers.php:473
+msgid "Make Admin"
+msgstr ""
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, fuzzy, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Mikroblog od %s"
+
+#: actions/groupsearch.php:52
+#, fuzzy, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. "
+"Minimální délka musí být alespoň 3 znaky"
+
+#: actions/groupsearch.php:58
+#, fuzzy
+msgid "Group search"
+msgstr "Hledání lidí"
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+#, fuzzy
+msgid "No results."
+msgstr "Žádné výsledky."
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr ""
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr ""
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+#, fuzzy
+msgid "Create a new group"
+msgstr "Vytvořit nový účet"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "Uživatel nemá profil."
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+#, fuzzy
+msgid "Error removing the block."
+msgstr "Chyba při ukládaní uživatele"
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "IM nastavení"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%"
+"%).Zadejte svou adresu níže."
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "Tato stránka není k dispozici v typu média která přijímáte."
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Potvrzené Jabber/GTalk adresy"
+
+#: actions/imsettings.php:114
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk "
+"účtu. (Přidal jste si %s do vašich kontaktů?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "IM adresa"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že "
+"jste přidal %s do vašeho seznamu kontaktů."
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr "Zasílat oznámení pomocí Jabber/GTalk"
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status."
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr ""
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr ""
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr "Žádné Jabber ID."
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Nelze normalizovat JabberID"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr "Není platným Jabber ID"
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr "Toto je již vaše Jabber"
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr "Jabber ID již patří jinému uživateli"
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro "
+"posílání zpráv."
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr "Toto není váš Jabber"
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr ""
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr ""
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr ""
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr ""
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr ""
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr ""
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr ""
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr ""
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr ""
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr ""
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr ""
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr ""
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr ""
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr ""
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr ""
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr "Odeslat"
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -79,533 +1555,848 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
+msgstr ""
+
+#: actions/joingroup.php:90 lib/command.php:217
+#, fuzzy
+msgid "You are already a member of that group"
+msgstr "Již jste přihlášen"
+
+#: actions/joingroup.php:128 lib/command.php:234
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s"
+msgstr "Nelze přesměrovat na server: %s"
+
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
-msgstr "%1 od teď naslouchá tvým sdělením v %2"
+msgid "%s joined group %s"
+msgstr ""
-#: ../lib/mail.php:126
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
+msgstr ""
+
+#: actions/leavegroup.php:90 lib/command.php:268
+#, fuzzy
+msgid "You are not a member of that group."
+msgstr "Neodeslal jste nám profil"
+
+#: actions/leavegroup.php:119 lib/command.php:278
+msgid "Could not find membership record."
+msgstr ""
+
+#: actions/leavegroup.php:127 lib/command.php:284
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s"
+msgstr "Nelze vytvořit OpenID z: %s"
+
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-msgstr ""
-"%1 naslouchá vašim sdělením na %s. \n"
-"\n"
-"\t%3\n"
-"\n"
-"S úctou váš,\n"
-"%4$s.\n"
-
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
-#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgid "%s left group %s"
msgstr ""
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
-#, php-format
-msgid "%1$s's status on %2$s"
-msgstr "%1 statusů na %2"
-
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr ""
-
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "Veřejný \"Stream\""
-
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s a přátelé"
-
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
-msgstr ""
-
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
-#, php-format
-msgid "%s status"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, php-format
-msgid "%s timeline"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
-#, php-format
-msgid "%s updates from everyone!"
-msgstr ""
-
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr "**%%site.name%%** je služba mikroblogů."
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem"
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 a více znaků"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 a více znaků, a nezapomeňte"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr ""
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro "
-"posílání zpráv."
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr ""
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr ""
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "O nás"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Přijmout"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Přidat"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "Přidej OpenID"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr ""
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Adresa"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr ""
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "Všechny odběry"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "Všechny aktualizace pro %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "Všechny položky obsahující \"%s\""
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Již přihlášen"
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Již přihlášeno"
+#: actions/login.php:110 actions/login.php:120
+#, fuzzy
+msgid "Invalid or expired token."
+msgstr "Neplatný obsah sdělení"
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Neplatné jméno nebo heslo"
+
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
+msgid "Error setting user."
+msgstr "Chyba nastavení uživatele"
+
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Přihlásit"
+
+#: actions/login.php:243
+msgid "Login to site"
msgstr ""
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Autorizovaný odběr"
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Přezdívka"
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Heslo"
+
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr "Zapamatuj si mě"
+
+#: actions/login.php:253 actions/register.php:479
msgid "Automatically login in the future; not for shared computers!"
msgstr "Příště automaticky přihlásit; ne pro počítače, které používá "
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Ztracené nebo zapomenuté heslo?"
+
+#: actions/login.php:282
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo."
+
+#: actions/login.php:286
+#, fuzzy, php-format
+msgid ""
+"Login with your username and password. Don't have a username yet? [Register]"
+"(%%action.register%%) a new account."
+msgstr ""
+"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? "
+"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%"
+"action.openidlogin%%)."
+
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:95
+#, php-format
+msgid "%s is already an admin for group \"%s\"."
+msgstr ""
+
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
+msgstr ""
+
+#: actions/makeadmin.php:145
+#, php-format
+msgid "Can't make %s an admin for group %s"
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status"
+msgstr ""
+
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr ""
+
+#: actions/newgroup.php:110
+msgid "Use this form to create a new group."
+msgstr ""
+
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr ""
+
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr ""
+
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr "Žádný obsah!"
+
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr ""
+
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#: actions/newmessage.php:181
+msgid "Message sent"
+msgstr ""
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr ""
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr ""
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "Nové sdělení"
+
+#: actions/newnotice.php:199
+#, fuzzy
+msgid "Notice posted"
+msgstr "Sdělení"
+
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být "
+"alespoň 3 znaky"
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr "Vyhledávání textu"
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr " Hledej \"%s\" ve Streamu"
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "Mikroblog od %s"
+
+#: actions/noticesearchrss.php:91
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "Všechny položky obsahující \"%s\""
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set his email yet."
+msgstr ""
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr ""
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr ""
+
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr "Sdělení nemá profil"
+
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "%1 statusů na %2"
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Připojit"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr ""
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr ""
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr ""
+
+#: actions/othersettings.php:60
+#, fuzzy
+msgid "Other Settings"
+msgstr "Nastavení"
+
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr ""
+
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
+
+#: actions/othersettings.php:118
+msgid "Automatic shortening service to use."
+msgstr ""
+
+#: actions/othersettings.php:122
+#, fuzzy
+msgid "View profile designs"
+msgstr "Nastavené Profilu"
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
+#: actions/othersettings.php:153
+#, fuzzy
+msgid "URL shortening service is too long (max 50 chars)."
+msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
+
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr ""
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr ""
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr ""
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Změnit heslo"
+
+#: actions/passwordsettings.php:69
+#, fuzzy
+msgid "Change your password."
+msgstr "Změnit heslo"
+
+#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
+#, fuzzy
+msgid "Password change"
+msgstr "Heslo uloženo"
+
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr "Staré heslo"
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "Nové heslo"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 a více znaků"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Heslo znovu"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr "stejné jako heslo výše"
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Změnit"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr ""
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Hesla nesouhlasí"
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Neplatné heslo"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr "Chyba při ukládaní uživatele; neplatný"
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "Nelze uložit nové heslo"
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Heslo uloženo"
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. "
+"Minimální délka musí být alespoň 3 znaky"
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr "Hledání lidí"
+
+#: actions/peopletag.php:70
+#, fuzzy, php-format
+msgid "Not a valid people tag: %s"
+msgstr "Není platnou mailovou adresou."
+
+#: actions/peopletag.php:144
+#, php-format
+msgid "Users self-tagged with %s - page %d"
+msgstr ""
+
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr "Neplatný obsah sdělení"
+
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr "Nastavené Profilu"
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+"Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli "
+"více dozvědět."
+
+#: actions/profilesettings.php:99
+#, fuzzy
+msgid "Profile information"
+msgstr "Neznámý profil"
+
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Celé jméno"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Moje stránky"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Popiš sebe a své zájmy ve 140 znacích"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Popiš sebe a své zájmy ve 140 znacích"
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "O mě"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Umístění"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Místo. Město, stát."
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr ""
+
+#: actions/profilesettings.php:140
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+msgstr ""
+
+#: actions/profilesettings.php:144
+msgid "Language"
+msgstr ""
+
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr ""
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr ""
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr ""
+
#: actions/profilesettings.php:160
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr ""
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr "Obrázek"
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr "Obrázek nahrán"
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
-#, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk "
-"účtu. (Přidal jste si %s do vašich kontaktů?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr ""
-
-#: ../lib/util.php:1318 lib/util.php:1452
-#, fuzzy
-msgid "Before »"
-msgstr "Starší »"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "O mě"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
+#: actions/profilesettings.php:221 actions/register.php:223
+#, fuzzy, php-format
+msgid "Bio is too long (max %d chars)."
msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
msgstr ""
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr ""
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Neplatná adresa '%s'"
+
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr ""
+
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "Nelze uložit profil"
+
+#: actions/profilesettings.php:336
+#, fuzzy
+msgid "Couldn't save tags."
+msgstr "Nelze uložit profil"
+
+#: actions/profilesettings.php:344
+msgid "Settings saved."
+msgstr "Nastavení uloženo"
+
+#: actions/public.php:83
#, php-format
-msgid "Can't read avatar URL '%s'"
-msgstr "Nelze přečíst adresu obrázku '%s'"
-
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "Nelze uložit nové heslo"
-
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Nelze dolozit zákaznický objekt OpenID"
-
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Nelze normalizovat JabberID"
-
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
+msgid "Beyond the page limit (%s)"
msgstr ""
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Změnit"
-
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
msgstr ""
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Změnit heslo"
+#: actions/public.php:129
+#, fuzzy, php-format
+msgid "Public timeline, page %d"
+msgstr "Veřejné zprávy"
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Veřejné zprávy"
+
+#: actions/public.php:151
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Veřejný Stream Feed"
+
+#: actions/public.php:155
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Veřejný Stream Feed"
+
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Veřejný Stream Feed"
+
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
msgstr ""
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
+#: actions/public.php:182
+msgid "Be the first to post!"
msgstr ""
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Heslo znovu"
-
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Potvrď adresu"
-
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Potvrď zrušení"
-
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
msgstr ""
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Potvrzující kód nebyl nalezen"
+#: actions/public.php:233
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
+#: actions/public.php:238
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
+msgstr ""
+
+#: actions/publictagcloud.php:57
+#, fuzzy
+msgid "Public tag cloud"
+msgstr "Veřejný Stream Feed"
+
+#: actions/publictagcloud.php:63
+#, php-format
+msgid "These are most popular recent tags on %s "
+msgstr ""
+
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
+msgid "Tag cloud"
+msgstr ""
+
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr "Již jste přihlášen"
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr "Žádný takový obnovující kód."
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr "Není obnovujícím kódem"
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr "Obnovyt kód pro neznámého uživatele"
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr "Chyba v ověřovacím kódu"
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu"
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr ""
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci"
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr "Obnovit"
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr "Resetovat heslo"
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr "Obnovit"
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr "Žádost o obnovu hesla"
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr ""
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 a více znaků, a nezapomeňte"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr "Stejné jako heslo výše"
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr "Reset"
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Zadej přezdívku nebo emailovou adresu"
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr ""
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr "Žádný registrovaný email pro tohoto uživatele."
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr "Chyba při ukládání potvrzení adresy"
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou "
+"u vašeho účtu."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr "Nečekané resetování hesla."
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "Heslo musí být alespoň 6 znaků dlouhé"
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "Heslo a potvrzení nesouhlasí"
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen."
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
+msgid "Sorry, only invited people can register."
+msgstr ""
+
+#: actions/register.php:92
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "Chyba v ověřovacím kódu"
+
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr ""
+
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr "Registrovat"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr ""
+
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
+
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr "Není platnou mailovou adresou."
+
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "Emailová adresa již existuje"
+
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr "Neplatné jméno nebo heslo"
+
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr ""
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr ""
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr ""
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "Email"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla."
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr ""
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr "Mé texty a soubory jsou k dispozici pod"
+
+#: actions/register.php:495
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
+
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr ""
+" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní "
+"číslo."
+
+#: actions/register.php:537
#, php-format
msgid ""
"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -624,2133 +2415,12 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Připojit"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Zruš existující účet"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Kontakt"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "Nelze vytvořit OpenID z: %s"
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr ""
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr ""
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "Nelze přesměrovat na server: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "Nelze uložin informace o obrázku"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "Nelze uložit nové informace do profilu"
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr ""
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr ""
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "Nelze smazat potvrzení emailu"
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "Nelze smazat odebírání"
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr "Nelze získat řetězec požadavku."
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "Nelze vložit potvrzující kód"
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "Nelze vložit odebírání"
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "Nelze uložit profil"
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr ""
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr ""
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "Nelze aktualizovat uživatele"
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Vytvořit"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Vytvořit nového uživatele s touto přezdívkou"
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Vytvořit nový účet"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Pro toto OpenID již uživatel existuje"
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Potvrzené Jabber/GTalk adresy"
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr ""
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr ""
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr "Nyní"
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr ""
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "Chyba v DB při vkládání odpovědi: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr ""
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "Email"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr ""
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr ""
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "Emailová adresa již existuje"
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "Potvrzení emailové adresy"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr ""
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr ""
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Zadej přezdívku nebo emailovou adresu"
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr ""
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr "Chyba potvrujícího řetězce"
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr "Chyba při propojení uživatele na OpenID"
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr "Chyba přihlašování uživatele"
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr "Chyba při kládání obrázku"
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr "Chyba při vkládání nového profilu"
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr "Chyba při vkládaní vzdáleného profilu"
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr "Chyba při ukládání potvrzení adresy"
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr "Chyba při ukládnání vzdáleného profilu"
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr "Chyba při ukládaní profilu"
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr "Chyba při ukládaní uživatele"
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr "Chyba při ukládaní uživatele; neplatný"
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
-msgid "Error setting user."
-msgstr "Chyba nastavení uživatele"
-
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr "Chyba při aktualizaci profilu"
-
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr "Chyba při aktualizaci vzdáleného profilu"
-
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr "Chyba v ověřovacím kódu"
-
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr "Existující jméno"
-
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "FAQ"
-
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr "Nahrávání obrázku selhalo."
-
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, fuzzy, php-format
-msgid "Feed for friends of %s"
-msgstr "Feed přítel uživatele: %s"
-
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, fuzzy, php-format
-msgid "Feed for replies to %s"
-msgstr "Feed odpovědí na %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr ""
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr ""
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr ""
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
-#: actions/login.php:282
+#: actions/register.php:561
msgid ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
-msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo."
-
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Celé jméno"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)"
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Nápověda"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Domů"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Moje stránky"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr "Stránka není platnou URL."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr ""
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr ""
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "IM adresa"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "IM nastavení"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte "
-"účet s OpenID."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a "
-"klikněte na \"Přidat\"."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr ""
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr ""
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Neplatné heslo"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Neplatné jméno nebo heslo"
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou "
-"u vašeho účtu."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr "Neplatná adresa obrázku '%s'"
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr ""
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr "Neplatná adresa '%s'"
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr "Neplatná adresa licence '%s'"
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr "Neplatný obsah sdělení"
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr "Neplatná uri sdělení"
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr "Neplatná url sdělení"
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr "Neplatná adresa profilu '%s'."
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Neplatná adresa profilu (špatný formát)"
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr "Neplatná adresa profilu, vrácená serverem"
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr "Neplatná velikost"
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr "Neplatné jméno nebo heslo"
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr ""
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr ""
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr ""
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr ""
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, "
-"dostupná pod [GNU Affero General Public License](http://www.fsf.org/"
-"licensing/licenses/agpl-3.0.html)."
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr "Jabber ID již patří jinému uživateli"
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že "
-"jste přidal %s do vašeho seznamu kontaktů."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr ""
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr ""
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Umístění"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Přihlásit"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-msgstr ""
-"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? "
-"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%"
-"action.openidlogin%%)."
-
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Odhlásit"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr ""
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Ztracené nebo zapomenuté heslo?"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr ""
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr ""
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Členem od"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr "Mikroblog od %s"
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr "Mé texty a soubory jsou k dispozici pod"
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr ""
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
-#, php-format
-msgid "New email address for posting to %s"
-msgstr ""
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "Nová přezdívka"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr "Nové sdělení"
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "Nové heslo"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen."
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Přezdívka"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Přezdívku již někdo používá. Zkuste jinou"
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer"
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Přezdívka není povolena"
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Přezdívka uživatele, kterého chcete sledovat"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Přezdívka nebo email"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr ""
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr "Žádné Jabber ID."
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr "Žádné potvrení!"
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-msgid "No carrier selected."
-msgstr ""
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr ""
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr "Žádný potvrzující kód."
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr "Žádný obsah!"
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr ""
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr "Žádné id"
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr "Nebyla poskytnuta žádná přezdívka od servru."
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr "Žádná přezdívka."
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr "Nečeká žádné potvrzení na zrušení."
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr "Nebylo vráceno žádné URL profilu od servu."
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr "Žádný registrovaný email pro tohoto uživatele."
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr "Žádný požadavek nebyl nalezen!"
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr "Žádné výsledky."
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr "Žádná velikost"
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr ""
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr ""
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr "Žádné takové OpenID"
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr "Žádný takový dokument."
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr "Žádné takové oznámení."
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr "Žádný takový obnovující kód."
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr "Žádné takové odebírání"
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr "Žádný takový uživatel."
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr ""
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr "Nikdo k zobrazení!"
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr "Není obnovujícím kódem"
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr ""
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr ""
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr "Není platným Jabber ID"
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr "Není platným OpenID."
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr ""
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr "Není platnou mailovou adresou."
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr "Není platnou přezdívkou."
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr "Neplatný adresa profilu (nesprává služba)"
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr "Není platnou adresou profulu (XRDS nedefinováno)."
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr "Není platnou adresou profilu (není YADIS dokumentem)."
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr "Není obrázkem, nebo jde o poškozený soubor."
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr "Neautorizován."
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr "Nečekaná odpověď."
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr "Nepřihlášen"
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr "Nepřihlášen!"
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr ""
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, fuzzy, php-format
-msgid "Notice feed for %s"
-msgstr "Feed sdělení pro %s"
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr "Sdělení nemá profil"
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr "Sdělení"
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr ""
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr "Staré heslo"
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr "Nastavení OpenID účtu"
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr "Přihlásit automaticky pomocí OpenID"
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr "OpenID přihlášení"
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr "OpenID adresa"
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr "Přihlašovaní pomocí OpenID zrušeno"
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr "Přihlašovaní pomocí OpenID selhalo: %s"
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr "OpenID selhalo: %s"
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "OpenID odstraněno"
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "Nastavení OpenID"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr ""
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr "Částečné náhrání."
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Heslo"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "Heslo a potvrzení nesouhlasí"
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "Heslo musí být alespoň 6 znaků dlouhé"
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr "Žádost o obnovu hesla"
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Heslo uloženo"
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Hesla nesouhlasí"
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr ""
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr ""
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr "Hledání lidí"
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Osobní"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr ""
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr ""
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-msgstr ""
-"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat "
-"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, "
-"klikněte na \"Zrušit\""
-
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status."
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Nastavení"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Nastavení uloženo"
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr ""
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr "Soukromí"
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr "Problém při ukládání sdělení"
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr "Profil"
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr "Adresa Profilu"
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr "Nastavené Profilu"
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr "Neznámý profil"
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-#, fuzzy
-msgid "Public Stream Feed"
-msgstr "Veřejný Stream Feed"
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr "Veřejné zprávy"
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr ""
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr ""
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr ""
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr "Obnovit"
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr "Obnovit"
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr "Obnovyt kód pro neznámého uživatele"
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr "Registrovat"
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr ""
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr ""
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr "Odmítnout"
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr "Zapamatuj si mě"
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr "Vzdálený profil s nesouhlasícím profilem"
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr "Vzdálený odběr"
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr "Odstranit"
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr "Odstranit OpenID"
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-msgstr ""
-"Odstranění jediného OpenID, bude mít za následek nemožnost dalšího "
-"přihlášení, nejprve přidejte jiné OpenID"
-
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr "Odpovědi"
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
-#, php-format
-msgid "Replies to %s"
-msgstr "Odpovědi na %s"
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr "Reset"
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr "Resetovat heslo"
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr ""
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr ""
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr ""
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr ""
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Stejné jako heslo výše"
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr ""
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr "Uložit"
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr "Hledat"
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-#, fuzzy
-msgid "Search Stream Feed"
-msgstr "Hledat ve Stream Feed"
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-msgstr ""
-"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být "
-"alespoň 3 znaky"
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. "
-"Minimální délka musí být alespoň 3 znaky"
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-msgid "Select a carrier"
-msgstr ""
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr "Odeslat"
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr ""
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr ""
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Zasílat oznámení pomocí Jabber/GTalk"
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr "Nastavení"
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr "Nastavení uloženo"
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr "Někdo jiný již má toto OpenID"
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr "Něco zvláštního se stalo"
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr ""
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr ""
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr "Zdroj"
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr "Statistiky"
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr "Uložené OpenID nebylo nalezeno."
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr "Odebírat"
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr "Odběratelé"
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr "Odběr autorizován"
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr "Odběr odmítnut"
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr "Odběry"
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr "Chyba systému při nahrávání souboru"
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr ""
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr ""
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr "Vyhledávání textu"
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr "Toto OpenID vám nepatří"
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr "Adresa již byla potvrzena"
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr "Tento potvrzující kód vám nepatří!"
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr ""
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr "Soubor je příliš velký"
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr "Toto je již vaše Jabber"
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr ""
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr ""
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr "Toto není váš Jabber"
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr ""
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr ""
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr "Toto je špatná IM adresa"
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr ""
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr ""
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr ""
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr "Adresa \"%s\" byla potvrzena pro váš účet"
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr "Adresa byla odstraněna"
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v "
-"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru "
-"je:"
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v "
-"nápovědě jak správně postupovat při zamítání odběru"
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr "Toto jsou lidé, kteří naslouchají %s sdělením"
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením "
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá"
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr "Toto jsou lidé, jejiž sdělením nasloucháte"
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr ""
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu"
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-"Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro "
-"přechod k vašemu OpenID poskytovately."
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-"Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID "
-"k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu "
-"již existujícímu účtu, pokud již takový máte."
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr ""
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr ""
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr "Tato stránka není k dispozici v typu média která přijímáte."
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr ""
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
msgstr ""
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
#: actions/remotesubscribe.php:98
#, php-format
msgid ""
@@ -2762,2160 +2432,444 @@ msgstr ""
"action.register%%) nový účet. Pokud již máte účet na [kompatibilních "
"mikroblozích](%%doc.openmublog%%), vložte níže asdresu "
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
-msgstr ""
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
+msgstr "Vzdálený odběr"
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Odběr autorizován"
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "Adresa profilu na jiných kompatibilních mikroblozích."
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr "Nečekaná forma submission."
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr "Nečekané resetování hesla."
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr "Neznámá verze OMB protokolu."
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-"Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, "
-"patří přispěvatelů a je k dipozici pod"
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr "Neznámý typ adresy %s"
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr "Odhlásit"
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr "Nepodporovaná verze OMB."
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr "Nepodporovaný formát obrázku."
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr ""
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr ""
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr "Upload"
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-"Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho "
-"již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec."
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr ""
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr ""
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla."
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr "Úživatel, kterému nasloucháte neexistuje."
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr "Uživatel nemá profil."
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr "Přezdívka"
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
-msgstr ""
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Přezdívka uživatele, kterého chcete sledovat"
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
-msgstr ""
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
+msgstr "Adresa Profilu"
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
-msgstr "Co se děje %s?"
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
+msgstr "Adresa profilu na jiných kompatibilních mikroblozích."
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
-msgstr "Místo. Město, stát."
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
+msgstr "Odebírat"
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr "Neplatný typ obrázku pro '%s'"
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
+msgstr "Neplatná adresa profilu (špatný formát)"
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr "Neplatná velikost obrázku '%s'"
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr "Již máte toto OpenID!"
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
+#: actions/remotesubscribe.php:168
+#, fuzzy
msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
+msgstr "Není platnou adresou profilu (není YADIS dokumentem)."
+
+#: actions/remotesubscribe.php:176
+msgid "That’s a local profile! Login to subscribe."
msgstr ""
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
-msgstr "Již jste přihlášen"
-
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr ""
-
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr ""
-
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr "Zde můžeze změnit heslo."
-
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr "Můžete vytvožit nový účet a začít posílat oznámení."
-
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
-#: actions/smssettings.php:69
-#, php-format
-msgid "You can receive SMS messages through email from %%site.name%%."
-msgstr ""
-
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
-msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr ""
-"Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"."
-
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
-msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-msgstr ""
-"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%"
-"%).Zadejte svou adresu níže."
-
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr ""
-"Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli "
-"více dozvědět."
-
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr "Můžete použít místní odebírání."
-
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr "Neodeslal jste nám profil"
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr ""
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr ""
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr "Byl jste identifikován. Zadejte nové heslo"
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr "Vaše OpenID adresa"
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci"
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. "
-"Zde může spravovat vaše OpenID"
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr "před pár sekundami"
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr "před %d dny"
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr "asi před %d hodinami"
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr "asi před %d minutami"
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr "asi před %d mesíci"
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr "asi přede dnem"
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr "asi před minutou"
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr "asi před měsícem"
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr "asi před rokem"
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr "asi před hodinou"
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr ""
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr "odpověd na ..."
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr "odpověď"
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr "stejné jako heslo výše"
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr ""
-
-#: ../lib/util.php:1309 lib/util.php:1443
+#: actions/remotesubscribe.php:183
#, fuzzy
-msgid "« After"
-msgstr "« Novější"
+msgid "Couldn’t get a request token."
+msgstr "Nelze získat řetězec požadavku."
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr ""
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr ""
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr ""
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr ""
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr ""
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr ""
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr ""
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr ""
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
#, php-format
-msgid "%s favorite notices"
-msgstr ""
+msgid "Replies to %s"
+msgstr "Odpovědi na %s"
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr ""
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr ""
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr ""
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr ""
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr ""
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr ""
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr ""
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr ""
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr ""
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr ""
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr ""
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr ""
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr ""
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr ""
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr ""
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr ""
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr ""
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr ""
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr ""
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr ""
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr ""
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr ""
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr ""
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr ""
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr ""
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr ""
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr ""
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr ""
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr ""
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr ""
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr ""
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr ""
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr ""
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr ""
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr ""
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr ""
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr ""
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr ""
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr ""
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr ""
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, php-format
-msgid "Mobile carrier for your phone. "
-msgstr ""
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr ""
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr ""
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr ""
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr ""
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr ""
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr ""
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr ""
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr ""
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr ""
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr ""
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr ""
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr ""
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr ""
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr ""
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr ""
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr ""
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr ""
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr ""
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr ""
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr ""
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr ""
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr ""
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr ""
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr ""
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr ""
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr ""
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr ""
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr ""
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr ""
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr ""
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr ""
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr ""
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr ""
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr ""
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr ""
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr ""
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr ""
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr ""
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr ""
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr ""
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr ""
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr ""
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr ""
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr ""
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr ""
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr ""
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr ""
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr ""
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr ""
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr ""
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr ""
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr ""
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr ""
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr ""
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr ""
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr ""
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr ""
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr ""
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr ""
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr ""
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr ""
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr ""
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr ""
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr ""
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr ""
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, fuzzy, php-format
-msgid "%s and friends, page %d"
-msgstr "%s a přátelé"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr ""
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
-#, fuzzy
-msgid "Avatar settings"
-msgstr "Nastavení"
-
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr ""
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr ""
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr ""
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
-msgid "There was a problem with your session token. "
-msgstr ""
-
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr ""
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr ""
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-#, fuzzy
-msgid "Lost our file."
-msgstr "Žádné takové oznámení."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr ""
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr ""
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr ""
-
-#: actions/block.php:111 actions/block.php:134
-#, fuzzy
-msgid "Block user"
-msgstr "Žádný takový uživatel."
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr ""
-
-#: actions/block.php:162 actions/block.php:165
-#, fuzzy
-msgid "You have already blocked this user."
-msgstr "Již jste přihlášen"
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr ""
-
-#: actions/confirmaddress.php:159
-#, fuzzy, php-format
-msgid "The address \"%s\" has been "
-msgstr "Adresa byla odstraněna"
-
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr ""
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr ""
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
-#, php-format
-msgid "Edit %s group"
-msgstr ""
-
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr ""
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr ""
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-#, fuzzy
-msgid "No nickname"
-msgstr "Žádná přezdívka."
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-#, fuzzy
-msgid "No such group"
-msgstr "Žádné takové oznámení."
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr ""
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr ""
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-#, fuzzy
-msgid "Nickname must have only lowercase letters "
-msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer"
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-#, fuzzy
-msgid "description is too long (max 140 chars)."
-msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-#, fuzzy
-msgid "Could not update group."
-msgstr "Nelze aktualizovat uživatele"
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-#, fuzzy
-msgid "Options saved."
-msgstr "Nastavení uloženo"
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, fuzzy, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr "Chyba v ověřovacím kódu"
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-msgid "Make a new email address for posting to; "
-msgstr ""
-
-#: actions/emailsettings.php:157
-msgid "Send me email when someone "
-msgstr ""
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr ""
-
-#: actions/emailsettings.php:321
-#, fuzzy
-msgid "That email address already belongs "
-msgstr "Emailová adresa již existuje"
-
-#: actions/emailsettings.php:343
-#, fuzzy
-msgid "A confirmation code was sent to the email address you added. "
-msgstr ""
-"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro "
-"posílání zpráv."
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr ""
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr ""
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr ""
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr ""
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-#, fuzzy
-msgid "No notice content!"
-msgstr "Žádný obsah!"
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr ""
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-#, fuzzy
-msgid "After"
-msgstr "« Novější"
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-#, fuzzy
-msgid "Before"
-msgstr "Starší »"
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr ""
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr ""
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, php-format
-msgid "You have been invited to %s"
-msgstr ""
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, fuzzy, php-format
-msgid "Invite your friends to use %s"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr ""
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr ""
-
-#: actions/facebookremove.php:56
-#, fuzzy
-msgid "Couldn't remove Facebook user."
-msgstr "Nelze aktualizovat uživatele"
-
-#: actions/facebooksettings.php:65
-msgid "There was a problem saving your sync preferences!"
-msgstr ""
-
-#: actions/facebooksettings.php:67
-#, fuzzy
-msgid "Sync preferences saved."
-msgstr "Nastavení uloženo"
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr ""
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#: actions/facebooksettings.php:106
-#, fuzzy
-msgid "Prefix"
-msgstr "Profil"
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr ""
-
-#: actions/facebooksettings.php:147
-#, fuzzy
-msgid "Sync preferences"
-msgstr "Nastavení"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-msgid "Disfavor favorite"
-msgstr ""
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-#, fuzzy
-msgid "Popular notices"
-msgstr "Žádné takové oznámení."
-
-#: actions/favorited.php:67
-#, fuzzy, php-format
-msgid "Popular notices, page %d"
-msgstr "Žádné takové oznámení."
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr ""
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr ""
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr ""
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr ""
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr ""
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr ""
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr ""
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr ""
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-#, fuzzy
-msgid "Logo updated."
-msgstr "Obrázek nahrán"
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-#, fuzzy
-msgid "Failed updating logo."
-msgstr "Nahrávání obrázku selhalo."
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr ""
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr ""
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr ""
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr ""
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr ""
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr ""
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-#, fuzzy
-msgid "Create a new group"
-msgstr "Vytvořit nový účet"
-
-#: actions/groupsearch.php:57
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr ""
-"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. "
-"Minimální délka musí být alespoň 3 znaky"
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-#, fuzzy
-msgid "Group search"
-msgstr "Hledání lidí"
-
-#: actions/imsettings.php:70
-msgid "You can send and receive notices through "
-msgstr ""
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr ""
-
-#: actions/imsettings.php:147
-#, fuzzy
-msgid "Send me replies through Jabber/GTalk "
-msgstr "Zasílat oznámení pomocí Jabber/GTalk"
-
-#: actions/imsettings.php:321
-#, fuzzy, php-format
-msgid "A confirmation code was sent "
-msgstr "Žádný potvrzující kód."
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr ""
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-#, fuzzy
-msgid "You are already a member of that group"
-msgstr "Již jste přihlášen"
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s"
-msgstr "Nelze přesměrovat na server: %s"
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr ""
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr ""
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr ""
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-#, fuzzy
-msgid "No such group."
-msgstr "Žádné takové oznámení."
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-#, fuzzy
-msgid "You are not a member of that group."
-msgstr "Neodeslal jste nám profil"
-
-#: actions/leavegroup.php:100
-msgid "You may not leave a group while you are its administrator."
-msgstr ""
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-msgid "Could not find membership record."
-msgstr ""
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s"
-msgstr "Nelze vytvořit OpenID z: %s"
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr ""
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr ""
-
-#: actions/microsummary.php:69
-msgid "No current status"
-msgstr ""
-
-#: actions/newgroup.php:53
-msgid "New group"
-msgstr ""
-
-#: actions/newgroup.php:115 actions/newgroup.php:110
-msgid "Use this form to create a new group."
-msgstr ""
-
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-#, fuzzy
-msgid "Could not create group."
-msgstr "Nelze uložin informace o obrázku"
-
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-#, fuzzy
-msgid "Could not set group membership."
-msgstr "Nelze vytvořit odebírat"
-
-#: actions/newmessage.php:119 actions/newnotice.php:132
-#, fuzzy
-msgid "That's too long. "
-msgstr "Soubor je příliš velký"
-
-#: actions/newmessage.php:134
-msgid "Don't send a message to yourself; "
-msgstr ""
-
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
-#, fuzzy
-msgid "Notice posted"
-msgstr "Sdělení"
-
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr ""
-
-#: actions/nudge.php:85
-msgid ""
-"This user doesn't allow nudges or hasn't confirmed or set his email yet."
-msgstr ""
-
-#: actions/nudge.php:94
-msgid "Nudge sent"
-msgstr ""
-
-#: actions/nudge.php:97
-msgid "Nudge sent!"
-msgstr ""
-
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-#, fuzzy
-msgid "OpenID login"
-msgstr "OpenID přihlášení"
-
-#: actions/openidsettings.php:128
-#, fuzzy
-msgid "Removing your only OpenID "
-msgstr "Odstranit OpenID"
-
-#: actions/othersettings.php:60
-#, fuzzy
-msgid "Other Settings"
-msgstr "Nastavení"
-
-#: actions/othersettings.php:71
-msgid "Manage various other options."
-msgstr ""
-
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr ""
-
-#: actions/othersettings.php:112
-#, fuzzy
-msgid "Service"
-msgstr "Hledat"
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
-#: actions/othersettings.php:118
-msgid "Automatic shortening service to use."
-msgstr ""
-
-#: actions/othersettings.php:144 actions/othersettings.php:146
-#: actions/othersettings.php:153
-#, fuzzy
-msgid "URL shortening service is too long (max 50 chars)."
-msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
-
-#: actions/passwordsettings.php:69
-#, fuzzy
-msgid "Change your password."
-msgstr "Změnit heslo"
-
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
-#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
-#, fuzzy
-msgid "Password change"
-msgstr "Heslo uloženo"
-
-#: actions/peopletag.php:35 actions/peopletag.php:70
-#, fuzzy, php-format
-msgid "Not a valid people tag: %s"
-msgstr "Není platnou mailovou adresou."
-
-#: actions/peopletag.php:47 actions/peopletag.php:144
-#, php-format
-msgid "Users self-tagged with %s - page %d"
-msgstr ""
-
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr ""
-
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
-#, fuzzy
-msgid "Profile information"
-msgstr "Neznámý profil"
-
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
-#: actions/profilesettings.php:140
-msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
-msgstr ""
-
-#: actions/profilesettings.php:144
-msgid "Automatically subscribe to whoever "
-msgstr ""
-
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
-#, fuzzy, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Neplatná adresa '%s'"
-
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
-#: actions/profilesettings.php:336
-#, fuzzy
-msgid "Couldn't save tags."
-msgstr "Nelze uložit profil"
-
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
-#: actions/public.php:129
-#, fuzzy, php-format
-msgid "Public timeline, page %d"
-msgstr "Veřejné zprávy"
-
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr ""
-
-#: actions/public.php:220
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-msgstr ""
-
-#: actions/publictagcloud.php:57
-#, fuzzy
-msgid "Public tag cloud"
-msgstr "Veřejný Stream Feed"
-
-#: actions/publictagcloud.php:63
-#, php-format
-msgid "These are most popular recent tags on %s "
-msgstr ""
-
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
-msgid "Tag cloud"
-msgstr ""
-
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
-msgid "Sorry, only invited people can register."
-msgstr ""
-
-#: actions/register.php:149
-#, fuzzy
-msgid "You can't register if you don't "
-msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
-
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr ""
-
-#: actions/register.php:368
-#, fuzzy
-msgid "1-64 lowercase letters or numbers, "
-msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
-
-#: actions/register.php:382 actions/register.php:386
-#, fuzzy
-msgid "Used only for updates, announcements, "
-msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla."
-
-#: actions/register.php:398
-#, fuzzy
-msgid "URL of your homepage, blog, "
-msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
-
-#: actions/register.php:404
-#, fuzzy
-msgid "Describe yourself and your "
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: actions/register.php:410
-#, fuzzy
-msgid "Where you are, like \"City, "
-msgstr "Místo. Město, stát."
-
-#: actions/register.php:432
-#, fuzzy
-msgid " except this private data: password, "
-msgstr ""
-"až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo."
-
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr ""
-
-#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr ""
-
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
#: actions/replies.php:127
#, fuzzy, php-format
msgid "Replies to %s, page %d"
msgstr "Odpovědi na %s"
-#: actions/showfavorites.php:79
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/replies.php:158
+#, fuzzy, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/replies.php:198
#, php-format
-msgid "%s favorite notices, page %d"
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
msgstr ""
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "Odpovědi na %s"
+
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
+msgstr "Žádné takové oznámení."
+
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr ""
+
+#: actions/showfavorites.php:170
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/showfavorites.php:177
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/showfavorites.php:184
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Feed přítel uživatele: %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
#, php-format
msgid "%s group"
msgstr ""
-#: actions/showgroup.php:79 actions/showgroup.php:84
+#: actions/showgroup.php:84
#, php-format
msgid "%s group, page %d"
msgstr ""
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
+#: actions/showgroup.php:218
#, fuzzy
msgid "Group profile"
msgstr "Žádné takové oznámení."
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
msgid "URL"
msgstr ""
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
#, fuzzy
msgid "Note"
msgstr "Sdělení"
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
msgid "Group actions"
msgstr ""
-#: actions/showgroup.php:323 actions/showgroup.php:304
+#: actions/showgroup.php:328
#, fuzzy, php-format
-msgid "Notice feed for %s group"
+msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Feed sdělení pro %s"
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
+#: actions/showgroup.php:334
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/showgroup.php:340
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/showgroup.php:345
+#, fuzzy, php-format
+msgid "FOAF for %s group"
+msgstr "Feed sdělení pro %s"
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
#, fuzzy
msgid "Members"
msgstr "Členem od"
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
msgid "(None)"
msgstr ""
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
+#: actions/showgroup.php:392
msgid "All members"
msgstr ""
-#: actions/showgroup.php:378
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr "Statistiky"
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Vytvořit"
+
+#: actions/showgroup.php:448
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showgroup.php:454
+#, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
+msgstr ""
+
+#: actions/showgroup.php:482
+msgid "Admins"
+msgstr ""
+
+#: actions/showmessage.php:81
+msgid "No such message."
msgstr ""
#: actions/showmessage.php:98
-msgid "Only the sender and recipient "
+msgid "Only the sender and recipient may read this message."
+msgstr ""
+
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr ""
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr ""
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Sdělení"
+
+#: actions/showstream.php:73
+#, php-format
+msgid " tagged %s"
msgstr ""
-#: actions/showstream.php:73 actions/showstream.php:78
#: actions/showstream.php:79
#, php-format
msgid "%s, page %d"
msgstr ""
+#: actions/showstream.php:122
+#, fuzzy, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/showstream.php:129
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Feed sdělení pro %s"
+
#: actions/showstream.php:143
-#, fuzzy
-msgid "'s profile"
-msgstr "Profil"
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Feed sdělení pro %s"
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-#, fuzzy
-msgid "User profile"
-msgstr "Uživatel nemá profil."
-
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
+#: actions/showstream.php:148
+#, php-format
+msgid "FOAF for %s"
msgstr ""
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
msgstr ""
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
msgstr ""
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
msgstr ""
-#: actions/showstream.php:451 lib/profileaction.php:157
-#, fuzzy
-msgid "All subscribers"
-msgstr "Odběratelé"
-
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr ""
-
-#: actions/showstream.php:542
+#: actions/showstream.php:234
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/smssettings.php:128
-#, fuzzy
-msgid "Phone number, no punctuation or spaces, "
-msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
+#: actions/showstream.php:239
+#, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
+msgstr ""
-#: actions/smssettings.php:162
-#, fuzzy
-msgid "Send me notices through SMS; "
-msgstr "Zasílat oznámení pomocí Jabber/GTalk"
+#: actions/smssettings.php:58
+msgid "SMS Settings"
+msgstr ""
-#: actions/smssettings.php:335
+#: actions/smssettings.php:69
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr ""
+
+#: actions/smssettings.php:91
#, fuzzy
-msgid "A confirmation code was sent to the phone number you added. "
+msgid "SMS is not available."
+msgstr "Tato stránka není k dispozici v typu média která přijímáte."
+
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr ""
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
+msgstr ""
+
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr ""
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr ""
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr ""
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr ""
+
+#: actions/smssettings.php:174
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr ""
+
+#: actions/smssettings.php:311
+msgid "No carrier selected."
+msgstr ""
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr ""
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr ""
+
+#: actions/smssettings.php:347
+#, fuzzy
+msgid ""
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
msgstr "Tento potvrzující kód vám nepatří!"
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr ""
+
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr ""
+
+#: actions/smssettings.php:465
msgid "Mobile carrier"
msgstr ""
+#: actions/smssettings.php:469
+msgid "Select a carrier"
+msgstr ""
+
+#: actions/smssettings.php:476
+#, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr ""
+
#: actions/subedit.php:70
#, fuzzy
msgid "You are not subscribed to that profile."
@@ -4947,1739 +2901,14 @@ msgid "%s subscribers, page %d"
msgstr ""
#: actions/subscribers.php:63
-#, fuzzy
-msgid "These are the people who listen to "
-msgstr "Toto jsou lidé, kteří naslouchají %s sdělením"
+msgid "These are the people who listen to your notices."
+msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením "
#: actions/subscribers.php:67
-#, fuzzy, php-format
-msgid "These are the people who "
+#, php-format
+msgid "These are the people who listen to %s's notices."
msgstr "Toto jsou lidé, kteří naslouchají %s sdělením"
-#: actions/subscriptions.php:52
-#, fuzzy, php-format
-msgid "%s subscriptions"
-msgstr "Všechny odběry"
-
-#: actions/subscriptions.php:54
-#, fuzzy, php-format
-msgid "%s subscriptions, page %d"
-msgstr "Všechny odběry"
-
-#: actions/subscriptions.php:65
-#, fuzzy
-msgid "These are the people whose notices "
-msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá"
-
-#: actions/subscriptions.php:69
-#, fuzzy, php-format
-msgid "These are the people whose "
-msgstr "Toto jsou lidé, kteří naslouchají %s sdělením"
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-#, fuzzy
-msgid "Jabber"
-msgstr "Žádné Jabber ID."
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, fuzzy, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr "Mikroblog od %s"
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr ""
-
-#: actions/tagother.php:33
-#, fuzzy
-msgid "Not logged in"
-msgstr "Nepřihlášen"
-
-#: actions/tagother.php:39
-#, fuzzy
-msgid "No id argument."
-msgstr "Žádný takový dokument."
-
-#: actions/tagother.php:65
-#, php-format
-msgid "Tag %s"
-msgstr ""
-
-#: actions/tagother.php:141
-msgid "Tag user"
-msgstr ""
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr ""
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-
-#: actions/tagother.php:198 actions/tagother.php:200
-#, fuzzy
-msgid "Could not save tags."
-msgstr "Nelze uložin informace o obrázku"
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr ""
-
-#: actions/tagrss.php:35
-#, fuzzy
-msgid "No such tag."
-msgstr "Žádné takové oznámení."
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Microblog tagged with %s"
-msgstr "Mikroblog od %s"
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr ""
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr ""
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-#, fuzzy
-msgid "Not found."
-msgstr "Žádný požadavek nebyl nalezen!"
-
-#: actions/twittersettings.php:71
-msgid "Add your Twitter account to automatically send "
-msgstr ""
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr ""
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-#, fuzzy
-msgid "Twitter password"
-msgstr "Nové heslo"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr ""
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr ""
-
-#: actions/twittersettings.php:341
-#, fuzzy, php-format
-msgid "Unable to retrieve account information "
-msgstr "Nelze smazat potvrzení emailu"
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-#, fuzzy
-msgid "Error removing the block."
-msgstr "Chyba při ukládaní uživatele"
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-#, fuzzy
-msgid "No profile id in request."
-msgstr "Nebylo vráceno žádné URL profilu od servu."
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-#, fuzzy
-msgid "No profile with that id."
-msgstr "Vzdálený profil s nesouhlasícím profilem"
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-#, fuzzy
-msgid "Unsubscribed"
-msgstr "Odhlásit"
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr ""
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr ""
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-#, fuzzy
-msgid "Problem saving notice. Unknown user."
-msgstr "Problém při ukládání sdělení"
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr ""
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-#, fuzzy
-msgid "Upload an avatar"
-msgstr "Nahrávání obrázku selhalo."
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr ""
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr ""
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, php-format
-msgid "%s - %s"
-msgstr ""
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr ""
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr ""
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr ""
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr ""
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-#, fuzzy
-msgid "Account"
-msgstr "O nás"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr ""
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr ""
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr ""
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr ""
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-#, fuzzy
-msgid "Create an account"
-msgstr "Vytvořit nový účet"
-
-#: lib/action.php:341 lib/action.php:418
-#, fuzzy
-msgid "Login with OpenID"
-msgstr "Žádné takové OpenID"
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-#, fuzzy
-msgid "Help me!"
-msgstr "Nápověda"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-#, fuzzy
-msgid "Site notice"
-msgstr "Nové sdělení"
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr ""
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-#, fuzzy
-msgid "Page notice"
-msgstr "Nové sdělení"
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-#, fuzzy
-msgid "Secondary site navigation"
-msgstr "Odběry"
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr ""
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-msgid "All "
-msgstr ""
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-msgid "license."
-msgstr ""
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-#, fuzzy
-msgid "Block this user"
-msgstr "Žádný takový uživatel."
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr ""
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-msgid "Disfavor this notice"
-msgstr ""
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-#, fuzzy
-msgid " a new account."
-msgstr "Vytvořit nový účet"
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-#, fuzzy
-msgid "Published"
-msgstr "Veřejné"
-
-#: lib/favorform.php:114 lib/favorform.php:140
-#, fuzzy
-msgid "Favor this notice"
-msgstr "Žádné takové oznámení."
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr ""
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr ""
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr ""
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr ""
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-msgid "Choose a tag to narrow list"
-msgstr ""
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-msgid "Go"
-msgstr ""
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-#, fuzzy
-msgid "URL of the homepage or blog of the group or topic"
-msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-#, fuzzy
-msgid "Description"
-msgstr "Odběry"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-#, fuzzy
-msgid "Describe the group or topic in 140 chars"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-#, fuzzy
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr "Místo. Město, stát."
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr ""
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-msgid "Admin"
-msgstr ""
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, php-format
-msgid "Edit %s group properties"
-msgstr ""
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-#, fuzzy
-msgid "Logo"
-msgstr "Odhlásit"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, php-format
-msgid "Add or edit %s logo"
-msgstr ""
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr ""
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr ""
-
-#: lib/grouptagcloudsection.php:56
-#, php-format
-msgid "Tags in %s group's notices"
-msgstr ""
-
-#: lib/htmloutputter.php:104
-#, fuzzy
-msgid "This page is not available in a "
-msgstr "Tato stránka není k dispozici v typu média která přijímáte."
-
-#: lib/joinform.php:114
-#, fuzzy
-msgid "Join"
-msgstr "Přihlásit"
-
-#: lib/leaveform.php:114
-#, fuzzy
-msgid "Leave"
-msgstr "Uložit"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-#, fuzzy
-msgid "Login with a username and password"
-msgstr "Neplatné jméno nebo heslo"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-#, fuzzy
-msgid "Sign up for a new account"
-msgstr "Vytvořit nový účet"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr ""
-
-#: lib/mail.php:175
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-
-#: lib/mail.php:236
-#, fuzzy, php-format
-msgid "%1$s is now listening to "
-msgstr "%1 od teď naslouchá tvým sdělením v %2"
-
-#: lib/mail.php:254 lib/mail.php:253
-#, fuzzy, php-format
-msgid "Location: %s\n"
-msgstr "Umístění %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, fuzzy, php-format
-msgid "Homepage: %s\n"
-msgstr "Moje stránky: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
-
-#: lib/mail.php:465
-#, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr ""
-
-#: lib/mail.php:555
-#, fuzzy, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr "%1 od teď naslouchá tvým sdělením v %2"
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-msgid "From"
-msgstr ""
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-msgid "Send a direct notice"
-msgstr ""
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-#, fuzzy
-msgid "Send a notice"
-msgstr "Nové sdělení"
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-#, fuzzy
-msgid "Available characters"
-msgstr "6 a více znaků"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-#, fuzzy
-msgid "in reply to"
-msgstr "odpověd na ..."
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-msgid "Reply to this notice"
-msgstr ""
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-#, fuzzy
-msgid "Reply"
-msgstr "odpověď"
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-msgid "Delete this notice"
-msgstr ""
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-msgid "Delete"
-msgstr ""
-
-#: lib/nudgeform.php:116
-msgid "Nudge this user"
-msgstr ""
-
-#: lib/nudgeform.php:128
-msgid "Nudge"
-msgstr ""
-
-#: lib/nudgeform.php:128
-msgid "Send a nudge to this user"
-msgstr ""
-
-#: lib/personaltagcloudsection.php:56
-#, php-format
-msgid "Tags in %s's notices"
-msgstr ""
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-msgid "(none)"
-msgstr ""
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Veřejné"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr ""
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr ""
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr ""
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-#, fuzzy
-msgid "Popular"
-msgstr "Hledání lidí"
-
-#: lib/searchgroupnav.php:82
-#, fuzzy
-msgid "Notice"
-msgstr "Sdělení"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr ""
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr ""
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, fuzzy, php-format
-msgid "People %s subscribes to"
-msgstr "Vzdálený odběr"
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, fuzzy, php-format
-msgid "People subscribed to %s"
-msgstr "Vzdálený odběr"
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, php-format
-msgid "Groups %s is a member of"
-msgstr ""
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr ""
-
-#: lib/subs.php:53 lib/subs.php:52
-#, fuzzy
-msgid "User has blocked you."
-msgstr "Uživatel nemá profil."
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-#, fuzzy
-msgid "Subscribe to this user"
-msgstr "Odběr autorizován"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr ""
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr ""
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-#, fuzzy
-msgid "Unblock this user"
-msgstr "Žádný takový uživatel."
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr ""
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr ""
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s a přátelé"
-
-#: actions/avatarsettings.php:78
-#, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr ""
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Obrázek nahrán"
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr ""
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr ""
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-msgid "Pick a square area of the image to be the logo."
-msgstr ""
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, fuzzy, php-format
-msgid "Microblog by %s group"
-msgstr "Mikroblog od %s"
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. "
-"Minimální délka musí být alespoň 3 znaky"
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-msgid "Only logged-in users can send direct messages."
-msgstr ""
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr " Hledej \"%s\" ve Streamu"
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-#, fuzzy
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr "Veřejný Stream Feed"
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-#, fuzzy
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr "Veřejný Stream Feed"
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Veřejný Stream Feed"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr ""
-" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní "
-"číslo."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Vytvořit"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Žádné takové oznámení."
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "Profil"
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, fuzzy, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, php-format
-msgid "FOAF for %s"
-msgstr ""
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-#, fuzzy
-msgid "Edit Avatar"
-msgstr "Obrázek"
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Nastavené Profilu"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr "Tento potvrzující kód vám nepatří!"
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "Žádný takový uživatel."
-
-#: actions/twittersettings.php:72
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, fuzzy, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr "Nelze smazat potvrzení emailu"
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat "
-"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, "
-"klikněte na \"Zrušit\""
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-msgid "Search for more groups"
-msgstr ""
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-
-#: lib/action.php:406 lib/action.php:425
-msgid "Connect to SMS, Twitter"
-msgstr ""
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-msgid "Badge"
-msgstr ""
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr ""
-"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte "
-"účet s OpenID."
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, fuzzy, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-"%1 naslouchá vašim sdělením na %s. \n"
-"\n"
-"\t%3\n"
-"\n"
-"S úctou váš,\n"
-"%4$s.\n"
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-#, fuzzy
-msgid "Search site"
-msgstr "Hledat"
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-#, fuzzy
-msgid "No such attachment."
-msgstr "Žádný takový dokument."
-
-#: actions/block.php:149
-#, fuzzy
-msgid "Do not block this user from this group"
-msgstr "Nelze přesměrovat na server: %s"
-
-#: actions/block.php:150
-#, fuzzy
-msgid "Block this user from this group"
-msgstr "Žádný takový uživatel."
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "Uživatel nemá profil."
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s a přátelé"
-
-#: actions/blockedfromgroup.php:108
-msgid "A list of the users blocked from joining this group."
-msgstr ""
-
-#: actions/blockedfromgroup.php:281
-#, fuzzy
-msgid "Unblock user from group"
-msgstr "Žádný takový uživatel."
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Umístění"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "Žádné takové oznámení."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, fuzzy, php-format
-msgid "Invalid alias: \"%s\""
-msgstr "Neplatná adresa '%s'"
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Přezdívku již někdo používá. Zkuste jinou"
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "Nelze uložin informace o obrázku"
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "Nové sdělení"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "Nové sdělení"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-#, fuzzy
-msgid "Not a valid invitation code."
-msgstr "Není platnou přezdívkou."
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-msgid "No group specified."
-msgstr ""
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-#, fuzzy
-msgid "User is already blocked from group."
-msgstr "Uživatel nemá profil."
-
-#: actions/groupblock.php:100
-#, fuzzy
-msgid "User is not a member of group."
-msgstr "Neodeslal jste nám profil"
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-#, fuzzy
-msgid "Block user from group"
-msgstr "Žádný takový uživatel."
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-msgid "You must be logged in to edit a group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-msgid "Group design"
-msgstr ""
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Nelze aktualizovat uživatele"
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-msgid "Unable to save your design settings!"
-msgstr ""
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Nastavení uloženo"
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-msgid "Make user an admin of the group"
-msgstr ""
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make Admin"
-msgstr ""
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-#, fuzzy
-msgid "No results."
-msgstr "Žádné výsledky."
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-#, fuzzy
-msgid "User is not blocked from group."
-msgstr "Uživatel nemá profil."
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-msgid "Message sent"
-msgstr ""
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "Nelze uložit profil"
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, fuzzy, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. "
-"Zde může spravovat vaše OpenID"
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-#, fuzzy
-msgid "View profile designs"
-msgstr "Nastavené Profilu"
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší "
-"emailovou adresu uloženou u vašeho účtu."
-
-#: actions/recoverpassword.php:158
-#, fuzzy
-msgid "You've been identified. Enter a new password below. "
-msgstr "Byl jste identifikován. Zadejte nové heslo"
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Žádost o obnovu hesla"
-
-#: actions/register.php:86 actions/register.php:92
-#, fuzzy
-msgid "Sorry, invalid invitation code."
-msgstr "Chyba v ověřovacím kódu"
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Odběr autorizován"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "Žádné takové oznámení."
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, fuzzy, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-msgid "Admins"
-msgstr ""
-
-#: actions/shownotice.php:101
-#, fuzzy
-msgid "Not a local notice"
-msgstr "Žádný takový uživatel."
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, php-format
-msgid " tagged %s"
-msgstr ""
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, fuzzy, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
-msgstr ""
-
#: actions/subscribers.php:108
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -6698,7 +2927,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, fuzzy, php-format
+msgid "%s subscriptions"
+msgstr "Všechny odběry"
+
+#: actions/subscriptions.php:54
+#, fuzzy, php-format
+msgid "%s subscriptions, page %d"
+msgstr "Všechny odběry"
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr "Toto jsou lidé, jejiž sdělením nasloucháte"
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá"
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6708,69 +2956,227 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1 od teď naslouchá tvým sdělením v %2"
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+#, fuzzy
+msgid "Jabber"
+msgstr "Žádné Jabber ID."
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr ""
+
+#: actions/tagother.php:33
+#, fuzzy
+msgid "Not logged in"
+msgstr "Nepřihlášen"
+
+#: actions/tagother.php:39
+#, fuzzy
+msgid "No id argument."
+msgstr "Žádný takový dokument."
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr ""
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+#, fuzzy
+msgid "User profile"
+msgstr "Uživatel nemá profil."
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr ""
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr ""
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+
+#: actions/tagother.php:200
+#, fuzzy
+msgid "Could not save tags."
+msgstr "Nelze uložin informace o obrázku"
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr ""
+
+#: actions/tag.php:68
+#, fuzzy, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr "Mikroblog od %s"
+
+#: actions/tag.php:86
#, fuzzy, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr "Feed sdělení pro %s"
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Feed sdělení pro %s"
+
+#: actions/tag.php:98
#, fuzzy, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr "Feed sdělení pro %s"
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
-msgid "This status is already a favorite!"
-msgstr ""
-
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
-msgid "That status is not a favorite!"
-msgstr ""
-
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
+#: actions/tagrss.php:35
#, fuzzy
-msgid "Could not determine source user."
-msgstr "Nelze aktualizovat uživatele"
+msgid "No such tag."
+msgstr "Žádné takové oznámení."
-#: actions/twitapifriendships.php:215
-msgid "Target user not specified."
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
msgstr ""
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
+#: actions/unsubscribe.php:77
#, fuzzy
-msgid "Could not find target user."
-msgstr "Nelze aktualizovat uživatele"
+msgid "No profile id in request."
+msgstr "Nebylo vráceno žádné URL profilu od servu."
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
-#, fuzzy, php-format
-msgid "%1$s / Updates mentioning %2$s"
-msgstr "%1 statusů na %2"
+#: actions/unsubscribe.php:84
+#, fuzzy
+msgid "No profile with that id."
+msgstr "Vzdálený profil s nesouhlasícím profilem"
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Updates tagged with %1$s on %2$s!"
-msgstr "Mikroblog od %s"
+#: actions/unsubscribe.php:98
+#, fuzzy
+msgid "Unsubscribed"
+msgstr "Odhlásit"
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#, php-format
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Autorizovaný odběr"
+
+#: actions/userauthorization.php:110
+#, fuzzy
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
+msgstr ""
+"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat "
+"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, "
+"klikněte na \"Zrušit\""
+
+#: actions/userauthorization.php:188
msgid "License"
msgstr ""
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Přijmout"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+#, fuzzy
+msgid "Subscribe to this user"
+msgstr "Odběr autorizován"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr "Odmítnout"
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "Všechny odběry"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr "Žádné potvrení!"
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr "Odběr autorizován"
+
+#: actions/userauthorization.php:249
+#, fuzzy
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v "
+"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru "
+"je:"
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr "Odběr odmítnut"
+
+#: actions/userauthorization.php:261
+#, fuzzy
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v "
+"nápovědě jak správně postupovat při zamítání odběru"
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, fuzzy, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "Nelze přečíst adresu obrázku '%s'"
+
+#: actions/userauthorization.php:348
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "Neplatný typ obrázku pro '%s'"
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr "Žádné id"
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
#, fuzzy
msgid "Profile design"
@@ -6786,6 +3192,15 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr ""
+
+#: actions/usergroups.php:130
+msgid "Search for more groups"
+msgstr ""
+
#: actions/usergroups.php:153
#, fuzzy, php-format
msgid "%s is not a member of any group."
@@ -6796,48 +3211,302 @@ msgstr "Neodeslal jste nám profil"
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr ""
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr ""
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr ""
+
+#: classes/Notice.php:179
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Problém při ukládání sdělení"
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+#, fuzzy
+msgid "Problem saving notice. Unknown user."
+msgstr "Problém při ukládání sdělení"
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+
+#: classes/Notice.php:194
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr ""
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr "Problém při ukládání sdělení"
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "Chyba v DB při vkládání odpovědi: %s"
+
#: classes/User.php:333
#, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr ""
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr "Profil"
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr ""
+
+#: lib/accountsettingsaction.php:112
+#, fuzzy
+msgid "Upload an avatar"
+msgstr "Nahrávání obrázku selhalo."
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr ""
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr ""
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "Uživatel nemá profil."
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr ""
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr ""
+
+#: lib/action.php:144
+#, php-format
+msgid "%s - %s"
+msgstr ""
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr ""
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr ""
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Domů"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr ""
+
+#: lib/action.php:432
+#, fuzzy
+msgid "Account"
+msgstr "O nás"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr ""
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Připojit"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "Nelze přesměrovat na server: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr ""
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr ""
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Odhlásit"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr ""
+
+#: lib/action.php:450
+#, fuzzy
+msgid "Create an account"
+msgstr "Vytvořit nový účet"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr ""
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Nápověda"
+
+#: lib/action.php:456
+#, fuzzy
+msgid "Help me!"
+msgstr "Nápověda"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr "Hledat"
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr ""
+
+#: lib/action.php:480
+#, fuzzy
+msgid "Site notice"
+msgstr "Nové sdělení"
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr ""
+
+#: lib/action.php:612
+#, fuzzy
+msgid "Page notice"
+msgstr "Nové sdělení"
+
+#: lib/action.php:714
+#, fuzzy
+msgid "Secondary site navigation"
+msgstr "Odběry"
+
+#: lib/action.php:721
+msgid "About"
+msgstr "O nás"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "FAQ"
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr "Soukromí"
+
+#: lib/action.php:732
+msgid "Source"
+msgstr "Zdroj"
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Kontakt"
+
+#: lib/action.php:736
+msgid "Badge"
+msgstr ""
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr ""
+
+#: lib/action.php:767
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+
+#: lib/action.php:769
+#, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr "**%%site.name%%** je služba mikroblogů."
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, "
+"dostupná pod [GNU Affero General Public License](http://www.fsf.org/"
+"licensing/licenses/agpl-3.0.html)."
+
+#: lib/action.php:785
+#, fuzzy
+msgid "Site content license"
+msgstr "Nové sdělení"
+
+#: lib/action.php:794
+msgid "All "
+msgstr ""
+
+#: lib/action.php:799
+msgid "license."
+msgstr ""
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr ""
+
+#: lib/action.php:1062
+#, fuzzy
+msgid "After"
+msgstr "« Novější"
+
+#: lib/action.php:1070
+#, fuzzy
+msgid "Before"
+msgstr "Starší »"
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr ""
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6859,6 +3528,222 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr ""
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr ""
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr ""
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr ""
+
+#: lib/command.php:88
+#, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "Nelze aktualizovat uživatele"
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, php-format
+msgid "Nudge sent to %s"
+msgstr ""
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr ""
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr ""
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr ""
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr ""
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr ""
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr ""
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr ""
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr ""
+
+#: lib/command.php:431
+#, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr ""
+
+#: lib/command.php:439
+#, fuzzy, php-format
+msgid "Reply to %s sent"
+msgstr "Odpovědi na %s"
+
+#: lib/command.php:441
+#, fuzzy
+msgid "Error saving notice."
+msgstr "Problém při ukládání sdělení"
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr ""
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr ""
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr ""
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr ""
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr ""
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr ""
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr ""
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr ""
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr ""
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "Nelze vytvořit OpenID z: %s"
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "Žádný potvrzující kód."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+msgid "Go to the installer."
+msgstr ""
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr ""
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr ""
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr ""
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -6908,6 +3793,10 @@ msgstr "Připojit"
msgid "Sidebar"
msgstr "Hledat"
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr ""
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -6929,21 +3818,106 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
+msgid "Disfavor this notice"
+msgstr ""
+
+#: lib/favorform.php:114 lib/favorform.php:140
+#, fuzzy
+msgid "Favor this notice"
+msgstr "Žádné takové oznámení."
+
+#: lib/favorform.php:140
+msgid "Favor"
+msgstr ""
+
+#: lib/feedlist.php:64
+msgid "Export data"
+msgstr ""
+
+#: lib/feed.php:85
+msgid "RSS 1.0"
+msgstr ""
+
+#: lib/feed.php:87
+msgid "RSS 2.0"
+msgstr ""
+
+#: lib/feed.php:89
+msgid "Atom"
+msgstr ""
+
+#: lib/feed.php:91
+msgid "FOAF"
+msgstr ""
+
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr ""
+
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr ""
+
+#: lib/galleryaction.php:139
+msgid "Select tag to filter"
+msgstr ""
+
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr ""
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr ""
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr ""
+
+#: lib/groupeditform.php:163
+#, fuzzy
+msgid "URL of the homepage or blog of the group or topic"
+msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
+
+#: lib/groupeditform.php:168
+#, fuzzy
+msgid "Describe the group or topic"
+msgstr "Popiš sebe a své zájmy ve 140 znacích"
+
+#: lib/groupeditform.php:170
+#, fuzzy, php-format
+msgid "Describe the group or topic in %d characters"
+msgstr "Popiš sebe a své zájmy ve 140 znacích"
+
+#: lib/groupeditform.php:172
+#, fuzzy
+msgid "Description"
+msgstr "Odběry"
+
+#: lib/groupeditform.php:179
+#, fuzzy
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr "Místo. Město, stát."
+
+#: lib/groupeditform.php:187
#, php-format
msgid "Extra nicknames for the group, comma- or space- separated, max %d"
msgstr ""
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr ""
+
#: lib/groupnav.php:100
#, fuzzy
msgid "Blocked"
@@ -6954,72 +3928,100 @@ msgstr "Žádný takový uživatel."
msgid "%s blocked users"
msgstr "Žádný takový uživatel."
+#: lib/groupnav.php:107
+#, php-format
+msgid "Edit %s group properties"
+msgstr ""
+
+#: lib/groupnav.php:112
+#, fuzzy
+msgid "Logo"
+msgstr "Odhlásit"
+
+#: lib/groupnav.php:113
+#, php-format
+msgid "Add or edit %s logo"
+msgstr ""
+
#: lib/groupnav.php:119
#, php-format
msgid "Add or edit %s design"
msgstr ""
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
msgstr ""
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
msgstr ""
-#: lib/mail.php:648
+#: lib/grouptagcloudsection.php:56
#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
+msgid "Tags in %s group's notices"
msgstr ""
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr "Tato stránka není k dispozici v typu média která přijímáte."
+
+#: lib/imagefile.php:75
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr "Částečné náhrání."
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr "Chyba systému při nahrávání souboru"
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr "Není obrázkem, nebo jde o poškozený soubor."
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr "Nepodporovaný formát obrázku."
+
+#: lib/imagefile.php:118
+#, fuzzy
+msgid "Lost our file."
+msgstr "Žádné takové oznámení."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
msgstr ""
-#: lib/mail.php:685
+#: lib/jabber.php:192
#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
+msgid "notice id: %s"
+msgstr "Nové sdělení"
+
+#: lib/joinform.php:114
+#, fuzzy
+msgid "Join"
+msgstr "Přihlásit"
+
+#: lib/leaveform.php:114
+#, fuzzy
+msgid "Leave"
+msgstr "Uložit"
+
+#: lib/logingroupnav.php:80
+#, fuzzy
+msgid "Login with a username and password"
+msgstr "Neplatné jméno nebo heslo"
+
+#: lib/logingroupnav.php:86
+#, fuzzy
+msgid "Sign up for a new account"
+msgstr "Vytvořit nový účet"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
msgstr ""
#: lib/mailbox.php:139
@@ -7028,486 +4030,147 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
+#: lib/mailbox.php:227 lib/noticelist.php:424
#, fuzzy
-msgid "in context"
-msgstr "Žádný obsah!"
+msgid "from"
+msgstr " od "
-#: lib/profileaction.php:177
-msgid "User ID"
-msgstr ""
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "Potvrzení emailové adresy"
-#: lib/searchaction.php:156 lib/searchaction.php:162
-#, fuzzy
-msgid "Search help"
-msgstr "Hledat"
-
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
-msgstr ""
-
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
-msgstr ""
-
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Stránka není platnou URL."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
-msgstr ""
-
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "Žádné takové oznámení."
-
-#: actions/apidirectmessage.php:89
-#, php-format
-msgid "Direct messages from %s"
-msgstr ""
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "Nelze přesměrovat na server: %s"
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
-msgstr ""
-
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
-
-#: actions/apigroupjoin.php:110
-#, fuzzy
-msgid "You are already a member of that group."
-msgstr "Již jste přihlášen"
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "Nelze přesměrovat na server: %s"
-
-#: actions/apigroupleave.php:114
-#, fuzzy
-msgid "You are not a member of this group."
-msgstr "Neodeslal jste nám profil"
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "Nelze vytvořit OpenID z: %s"
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "Profil"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "Neodeslal jste nám profil"
-
-#: actions/apigrouplistall.php:94
-#, php-format
-msgid "groups on %s"
-msgstr ""
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Obrázek nahrán"
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, fuzzy, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-#, fuzzy
-msgid "Unsupported format."
-msgstr "Nepodporovaný formát obrázku."
-
-#: actions/bookmarklet.php:50
-msgid "Post to "
-msgstr ""
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
-
-#: actions/favoritesrss.php:115
-#, fuzzy, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr "Mikroblog od %s"
-
-#: actions/finishremotesubscribe.php:80
-#, fuzzy
-msgid "User being listened to does not exist."
-msgstr "Úživatel, kterému nasloucháte neexistuje."
-
-#: actions/finishremotesubscribe.php:106
-#, fuzzy
-msgid "You are not authorized."
-msgstr "Neautorizován."
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec."
-
-#: actions/finishremotesubscribe.php:114
-#, fuzzy
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Neznámá verze OMB protokolu."
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "Žádné takové oznámení."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Žádné takové oznámení."
-
-#: actions/grouprss.php:133
-#, fuzzy, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr "Mikroblog od %s"
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "Tato stránka není k dispozici v typu média která přijímáte."
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? "
-"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%"
-"action.openidlogin%%)."
-
-#: actions/noticesearchrss.php:89
-#, fuzzy, php-format
-msgid "Updates with \"%s\""
-msgstr "Mikroblog od %s"
-
-#: actions/noticesearchrss.php:91
-#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "Všechny položky obsahující \"%s\""
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Připojit"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-#, fuzzy
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr "Není platnou adresou profilu (není YADIS dokumentem)."
-
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "Nelze získat řetězec požadavku."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/replies.php:158
-#, fuzzy, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/repliesrss.php:72
-#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr "Odpovědi na %s"
-
-#: actions/showfavorites.php:170
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/showfavorites.php:177
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/showfavorites.php:184
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Feed přítel uživatele: %s"
-
-#: actions/showfavorites.php:211
+#: lib/mail.php:174
#, php-format
msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
msgstr ""
-#: actions/showgroup.php:345
-#, fuzzy, php-format
-msgid "FOAF for %s group"
-msgstr "Feed sdělení pro %s"
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Sdělení"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "Tato stránka není k dispozici v typu média která přijímáte."
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Feed sdělení pro %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#: lib/mail.php:235
#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr "%1 od teď naslouchá tvým sdělením v %2"
-#: actions/userauthorization.php:110
-#, fuzzy
+#: lib/mail.php:240
+#, fuzzy, php-format
msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
msgstr ""
-"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat "
-"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, "
-"klikněte na \"Zrušit\""
+"%1 naslouchá vašim sdělením na %s. \n"
+"\n"
+"\t%3\n"
+"\n"
+"S úctou váš,\n"
+"%4$s.\n"
-#: actions/userauthorization.php:249
-#, fuzzy
+#: lib/mail.php:253
+#, fuzzy, php-format
+msgid "Location: %s\n"
+msgstr "Umístění %s\n"
+
+#: lib/mail.php:255
+#, fuzzy, php-format
+msgid "Homepage: %s\n"
+msgstr "Moje stránky: %s\n"
+
+#: lib/mail.php:257
+#, php-format
msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
+"Bio: %s\n"
+"\n"
msgstr ""
-"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v "
-"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru "
-"je:"
-#: actions/userauthorization.php:261
-#, fuzzy
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr ""
+
+#: lib/mail.php:288
+#, php-format
msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
msgstr ""
-"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v "
-"nápovědě jak správně postupovat při zamítání odběru"
-#: actions/userauthorization.php:296
+#: lib/mail.php:412
#, php-format
-msgid "Listener URI ‘%s’ not found here"
+msgid "%s status"
msgstr ""
-#: actions/userauthorization.php:301
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr ""
+
+#: lib/mail.php:462
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "You've been nudged by %s"
msgstr ""
-#: actions/userauthorization.php:307
+#: lib/mail.php:466
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
msgstr ""
-#: actions/userauthorization.php:322
+#: lib/mail.php:509
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "New private message from %s"
msgstr ""
-#: actions/userauthorization.php:338
+#: lib/mail.php:513
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
msgstr ""
-#: actions/userauthorization.php:343
-#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Nelze přečíst adresu obrázku '%s'"
-
-#: actions/userauthorization.php:348
-#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Neplatný typ obrázku pro '%s'"
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "Nelze přesměrovat na server: %s"
-
-#: lib/action.php:785
-#, fuzzy
-msgid "Site content license"
-msgstr "Nové sdělení"
-
-#: lib/command.php:88
-#, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "Nelze aktualizovat uživatele"
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, php-format
-msgid "Nudge sent to %s"
-msgstr ""
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr ""
-
-#: lib/command.php:431
-#, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr ""
-
-#: lib/command.php:439
-#, fuzzy, php-format
-msgid "Reply to %s sent"
-msgstr "Odpovědi na %s"
-
-#: lib/command.php:441
-#, fuzzy
-msgid "Error saving notice."
-msgstr "Problém při ukládání sdělení"
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "Žádný potvrzující kód."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-msgid "Go to the installer."
-msgstr ""
-
-#: lib/galleryaction.php:139
-msgid "Select tag to filter"
-msgstr ""
-
-#: lib/groupeditform.php:168
-#, fuzzy
-msgid "Describe the group or topic"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: lib/groupeditform.php:170
-#, fuzzy, php-format
-msgid "Describe the group or topic in %d characters"
-msgstr "Popiš sebe a své zájmy ve 140 znacích"
-
-#: lib/jabber.php:192
-#, php-format
-msgid "notice id: %s"
-msgstr "Nové sdělení"
-
#: lib/mail.php:554
#, fuzzy, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7554,77 +4217,425 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr " od "
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
#, fuzzy
msgid "Could not determine file's mime-type!"
msgstr "Nelze aktualizovat uživatele"
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr ""
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr ""
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+#, fuzzy
+msgid "Available characters"
+msgstr "6 a více znaků"
+
+#: lib/noticeform.php:145
+#, fuzzy
+msgid "Send a notice"
+msgstr "Nové sdělení"
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr "Co se děje %s?"
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+#, fuzzy
+msgid "in context"
+msgstr "Žádný obsah!"
+
+#: lib/noticelist.php:498
+msgid "Reply to this notice"
+msgstr ""
+
+#: lib/noticelist.php:499
+#, fuzzy
+msgid "Reply"
+msgstr "odpověď"
+
+#: lib/nudgeform.php:116
+msgid "Nudge this user"
+msgstr ""
+
+#: lib/nudgeform.php:128
+msgid "Nudge"
+msgstr ""
+
+#: lib/nudgeform.php:128
+msgid "Send a nudge to this user"
+msgstr ""
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr "Chyba při vkládání nového profilu"
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr "Chyba při kládání obrázku"
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr "Chyba při vkládaní vzdáleného profilu"
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Nové sdělení"
-#: actions/login.php:110 actions/login.php:120
-#, fuzzy
-msgid "Invalid or expired token."
-msgstr "Neplatný obsah sdělení"
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "Nelze vložit odebírání"
-#: lib/command.php:597
-#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "Nelze vytvořit OpenID z: %s"
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Osobní"
-#: lib/command.php:602
+#: lib/personalgroupnav.php:104
+msgid "Replies"
+msgstr "Odpovědi"
+
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr ""
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr ""
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr ""
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr ""
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr ""
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr ""
+
+#: lib/personaltagcloudsection.php:56
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgid "Tags in %s's notices"
msgstr ""
-#: lib/imagefile.php:75
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Odběry"
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "Všechny odběry"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Odběratelé"
+
+#: lib/profileaction.php:157
+#, fuzzy
+msgid "All subscribers"
+msgstr "Odběratelé"
+
+#: lib/profileaction.php:177
+msgid "User ID"
+msgstr ""
+
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Členem od"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr ""
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Veřejné"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr ""
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr ""
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr ""
+
+#: lib/publicgroupnav.php:92
+#, fuzzy
+msgid "Popular"
+msgstr "Hledání lidí"
+
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "Hledat"
+
+#: lib/searchaction.php:162
+#, fuzzy
+msgid "Search help"
+msgstr "Hledat"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr ""
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr ""
+
+#: lib/searchgroupnav.php:82
+#, fuzzy
+msgid "Notice"
+msgstr "Sdělení"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr ""
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr ""
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr ""
+
+#: lib/section.php:106
+msgid "More..."
+msgstr ""
+
+#: lib/subgroupnav.php:83
#, fuzzy, php-format
-msgid "That file is too big. The maximum file size is %s."
-msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
+msgid "People %s subscribes to"
+msgstr "Vzdálený odběr"
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack - not yet implemented.\n"
-"track off - not yet implemented.\n"
-"untrack all - not yet implemented.\n"
-"tracks - not yet implemented.\n"
-"tracking - not yet implemented.\n"
+#: lib/subgroupnav.php:91
+#, fuzzy, php-format
+msgid "People subscribed to %s"
+msgstr "Vzdálený odběr"
+
+#: lib/subgroupnav.php:99
+#, php-format
+msgid "Groups %s is a member of"
+msgstr ""
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+msgid "(none)"
+msgstr ""
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+#, fuzzy
+msgid "User has blocked you."
+msgstr "Uživatel nemá profil."
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr ""
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr ""
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr "Nepřihlášen!"
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "Nelze smazat odebírání"
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr ""
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr ""
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr "Odhlásit"
+
+#: lib/userprofile.php:116
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "Obrázek"
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr ""
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Nastavené Profilu"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr ""
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr ""
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr "před pár sekundami"
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr "asi před minutou"
+
+#: lib/util.php:848
+#, php-format
+msgid "about %d minutes ago"
+msgstr "asi před %d minutami"
+
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr "asi před hodinou"
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr "asi před %d hodinami"
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr "asi přede dnem"
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr "před %d dny"
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr "asi před měsícem"
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr "asi před %d mesíci"
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr "asi před rokem"
+
+#: lib/webcolor.php:82
+#, fuzzy, php-format
+msgid "%s is not a valid color!"
+msgstr "Stránka není platnou URL."
+
+#: lib/webcolor.php:123
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex chars."
+msgstr ""
+
+#: scripts/maildaemon.php:48
+msgid "Could not parse message."
+msgstr ""
+
+#: scripts/maildaemon.php:53
+msgid "Not a registered user."
+msgstr ""
+
+#: scripts/maildaemon.php:57
+msgid "Sorry, that is not your incoming email address."
+msgstr ""
+
+#: scripts/maildaemon.php:61
+msgid "Sorry, no incoming email allowed."
msgstr ""
diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo
index 00856c2f73..fa4ddeb8c6 100644
Binary files a/locale/de/LC_MESSAGES/statusnet.mo and b/locale/de/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po
index 09a14daea9..d6c1f3fdb2 100644
--- a/locale/de/LC_MESSAGES/statusnet.po
+++ b/locale/de/LC_MESSAGES/statusnet.po
@@ -6,49 +6,1562 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:13+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:57:55+0000\n"
"Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
-#, php-format
-msgid " Search Stream for \"%s\""
-msgstr "Suche im Stream nach „%s“"
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "Tag nicht vorhanden."
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr "Unbekannter Benutzer."
+
+#: actions/all.php:84
+#, php-format
+msgid "%s and friends, page %d"
+msgstr "%s und Freunde, Seite %d"
+
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
+#, php-format
+msgid "%s and friends"
+msgstr "%s und Freunde"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/all.php:127
+#, php-format
msgid ""
-" except this private data: password, email address, IM address, phone number."
+"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, "
-"Telefonnummer."
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr "von"
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:132
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s und Freunde"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr "API-Methode nicht gefunden!"
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr "Diese Methode benötigt ein POST."
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr "Benutzer hat kein Profil."
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr "Blockieren des Benutzers fehlgeschlagen."
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr "Freigeben des Benutzers fehlgeschlagen."
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr "Fehlender Nachrichtentext!"
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr ""
+"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr "Empfänger nicht gefunden."
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr ""
+"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen "
+"du nicht befreundet bist."
+
+#: actions/apidirectmessage.php:89
+#, fuzzy, php-format
+msgid "Direct messages from %s"
+msgstr "Direkte Nachricht an %s"
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "Alle von %s gesendeten direkten Nachrichten"
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr "Direkte Nachricht an %s"
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "Alle an %s gesendeten direkten Nachrichten"
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr "Keine Nachricht mit dieser ID gefunden."
+
+#: actions/apifavoritecreate.php:119
+#, fuzzy
+msgid "This status is already a favorite!"
+msgstr "Diese Nachricht ist bereits ein Favorit!"
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr "Konnte keinen Favoriten erstellen."
+
+#: actions/apifavoritedestroy.php:122
+#, fuzzy
+msgid "That status is not a favorite!"
+msgstr "Diese Nachricht ist kein Favorit!"
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr "Konnte Favoriten nicht löschen."
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden"
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen"
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden"
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden."
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Konnte öffentlichen Stream nicht abrufen."
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "Konnte keine Statusmeldungen finden."
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+msgid "Could not create group."
+msgstr "Konnte Gruppe nicht erstellen."
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "Konnte keinen Favoriten erstellen."
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+msgid "Could not set group membership."
+msgstr "Konnte Gruppenmitgliedschaft nicht setzen."
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. "
+"Leerzeichen sind nicht erlaubt."
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr "Ungültiger Nutzername."
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr ""
+"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)."
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "Ungültiger Tag: \"%s\""
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "Du bist bereits Mitglied dieser Gruppe"
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen"
+
+#: actions/apigroupleave.php:114
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "Du bist kein Mitglied dieser Gruppe."
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen"
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr "%s Gruppen"
+
+#: actions/apigrouplistall.php:94
+#, fuzzy, php-format
+msgid "groups on %s"
+msgstr "Gruppenaktionen"
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "%s Gruppen"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "Gruppen zu denen %s gehört"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr "Diese Methode benötigt ein POST oder DELETE."
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr "Du kannst den Status eines anderen Benutzers nicht löschen."
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Avatar aktualisiert."
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr "Keine Nachricht mit dieser ID gefunden."
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, fuzzy, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr ""
+"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt."
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr "Nicht gefunden"
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+#, fuzzy
+msgid "Unsupported format."
+msgstr "Bildformat wird nicht unterstützt."
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr "%s / Favoriten von %s"
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr "%s Aktualisieurng in den Favoriten von %s / %s."
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, php-format
+msgid "%s timeline"
+msgstr "%s Zeitleiste"
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr "Aktualisierungen von %1$s auf %2$s!"
+
+#: actions/apitimelinementions.php:116
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
msgstr "%1$s Antworten an %2$s"
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten."
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "%s öffentliche Zeitleiste"
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr "%s Nachrichten von allen!"
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "Nachrichten, die mit %s getagt sind"
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Updates von %1$s auf %2$s!"
+
+#: actions/apiusershow.php:96
+msgid "Not found."
+msgstr "Nicht gefunden."
+
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "Unbekanntes Dokument."
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr "Kein Nutzername."
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr "Keine Größe."
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr "Ungültige Größe."
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr "Avatar"
+
+#: actions/avatarsettings.php:78
+#, fuzzy, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr "Du kannst dein persönliches Avatar hochladen."
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr "Benutzer ohne passendes Profil"
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+msgid "Avatar settings"
+msgstr "Avatar-Einstellungen"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr "Original"
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr "Vorschau"
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+#, fuzzy
+msgid "Delete"
+msgstr "Löschen"
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr "Hochladen"
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr "Zuschneiden"
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr "Unerwartete Formulareingabe."
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr ""
+"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern"
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr "Daten verloren."
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr "Avatar aktualisiert."
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr "Aktualisierung des Avatars fehlgeschlagen."
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Avatar aktualisiert."
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+msgid "No nickname"
+msgstr "Kein Benutzername"
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+msgid "No such group"
+msgstr "Keine derartige Gruppe"
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "Benutzerprofil"
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s und Freunde, Seite %d"
+
+#: actions/blockedfromgroup.php:108
+#, fuzzy
+msgid "A list of the users blocked from joining this group."
+msgstr "Liste der Benutzer in dieser Gruppe."
+
+#: actions/blockedfromgroup.php:281
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "Freigeben des Benutzers fehlgeschlagen."
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr "Freigeben"
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+#, fuzzy
+msgid "Unblock this user"
+msgstr "Benutzer freigeben"
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "Nicht angemeldet."
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr "Kein Profil angegeben."
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr "Kein Benutzer-Profil mit dieser ID."
+
+#: actions/block.php:111 actions/block.php:134
+msgid "Block user"
+msgstr "Benutzer blockieren"
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr "Nein"
+
+#: actions/block.php:149
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "Liste der Benutzer in dieser Gruppe."
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr "Ja"
+
+#: actions/block.php:150
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "Liste der Benutzer in dieser Gruppe."
+
+#: actions/block.php:165
+msgid "You have already blocked this user."
+msgstr "Du hast diesen Benutzer bereits blockiert."
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr "Konnte Blockierungsdaten nicht speichern."
+
+#: actions/bookmarklet.php:50
+#, fuzzy
+msgid "Post to "
+msgstr "Foto"
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr "Kein Bestätigungs-Code."
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Bestätigungscode nicht gefunden."
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr "Dieser Bestätigungscode ist nicht für dich!"
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr "Nicht erkannter Adresstyp %s"
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr "Diese Adresse wurde bereits bestätigt."
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "Konnte Benutzerdaten nicht aktualisieren."
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "Konnte E-Mail-Bestätigung nicht löschen."
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Adresse bestätigen"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "Die Adresse „%s“\" wurde für dein Konto bestätigt."
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Bestätigungscode"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr "Nachrichten"
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr "Unbekannte Nachricht."
+
+#: actions/deletenotice.php:71
+msgid "Can't delete this notice."
+msgstr "Die Nachricht konnte nicht gelöscht werden."
+
+#: actions/deletenotice.php:103
+#, fuzzy
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion "
+"ist irreversibel."
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr "Notiz löschen"
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?"
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "Die Nachricht konnte nicht gelöscht werden."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+#, fuzzy
+msgid "Delete this notice"
+msgstr "Notiz löschen"
+
+#: actions/deletenotice.php:157
+#, fuzzy
+msgid "There was a problem with your session token. Try again, please."
+msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr "Diese Nachricht ist kein Favorit!"
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr "Zu Favoriten hinzufügen"
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr "Unbekanntes Dokument."
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr "Gruppe %s bearbeiten"
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten"
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten."
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
+
+#: actions/editgroup.php:253
+msgid "Could not update group."
+msgstr "Konnte Gruppe nicht aktualisieren."
+
+#: actions/editgroup.php:269
+msgid "Options saved."
+msgstr "Einstellungen gespeichert."
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr "E-Mail-Einstellungen"
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst."
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Adresse"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr "Aktuelle bestätigte E-Mail Adresse"
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr "Entfernen"
+
+#: actions/emailsettings.php:113
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang "
+"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen."
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr "E-Mail-Adresse"
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“"
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr "Eingehende E-Mail"
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten."
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr ""
+"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch "
+"deaktiviert."
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr "Neu"
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Einstellungen"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr "Informiere mich über neues Abonnements per E-Mail."
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert."
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr ""
+"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
+
+#: actions/emailsettings.php:174
+#, fuzzy
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr ""
+"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden."
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr "Ich möchte Einträge per E-Mail veröffentlichen."
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr "MicroID für meine E-Mail-Adresse veröffentlichen."
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr "Speichern"
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Einstellungen gesichert."
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr "Keine E-Mail-Adresse."
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr "Konnte diese E-Mail-Adresse nicht normalisieren"
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr "Ungültige E-Mail-Adresse"
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr "Dies ist bereits deine E-Mail-Adresse."
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer."
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "Konnte keinen Bestätigungscode einfügen."
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. "
+"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und "
+"Anweisungen, wie dieser benutzt wird."
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann."
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr "Das ist die falsche IM Adresse."
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Bestätigung abgebrochen."
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr "Dies ist nicht deine E-Mail-Adresse."
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr "Die Adresse wurde entfernt."
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr "Keine Eingangs-E-Mail-Adresse."
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr "Konnte Nutzereintrag nicht schreiben"
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr "Eingehende E-Mail-Adresse entfernt"
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt."
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "Beliebte Nachrichten"
+
+#: actions/favorited.php:67
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "Beliebte Nachrichten, Seite %d"
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite."
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr "%ss favorisierte Nachrichten"
+
+#: actions/favoritesrss.php:115
+#, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Aktualisierungen von %1$s auf %2$s!"
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr "Diese Nachricht ist bereits ein Favorit!"
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+msgid "Disfavor favorite"
+msgstr "Aus Favoriten entfernen"
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "Top-Benutzer"
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr "Top-Benutzer, Seite %d"
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr "Eine Auswahl der tollen Benutzer auf %s"
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "Neue Nachricht"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "Neue Nachricht"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "Unerwartete Antwort!"
+
+#: actions/finishremotesubscribe.php:80
+#, fuzzy
+msgid "User being listened to does not exist."
+msgstr "Aufgeführte Nutzer existiert nicht."
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr "Du kannst ein lokales Abonnement erstellen!"
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren."
+
+#: actions/finishremotesubscribe.php:106
+#, fuzzy
+msgid "You are not authorized."
+msgstr "Nicht autorisiert."
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln."
+
+#: actions/finishremotesubscribe.php:114
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "Unbekannte OMB-Protokollversion."
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr "Fehler beim Aktualisieren des entfernten Profils"
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+msgid "No such group."
+msgstr "Keine derartige Gruppe."
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "Unbekannte Nachricht."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Daten verloren."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+#, fuzzy
+msgid "No group specified."
+msgstr "Kein Profil angegeben."
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+#, fuzzy
+msgid "User is already blocked from group."
+msgstr "Dieser Benutzer hat dich blockiert."
+
+#: actions/groupblock.php:100
+#, fuzzy
+msgid "User is not a member of group."
+msgstr "Du bist kein Mitglied dieser Gruppe."
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+#, fuzzy
+msgid "Block user from group"
+msgstr "Benutzer blockieren"
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr "Keine ID"
+
+#: actions/groupdesignsettings.php:68
+#, fuzzy
+msgid "You must be logged in to edit a group."
+msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
+
+#: actions/groupdesignsettings.php:141
+#, fuzzy
+msgid "Group design"
+msgstr "Gruppen"
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Konnte Benutzerdaten nicht aktualisieren."
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#, fuzzy
+msgid "Unable to save your design settings!"
+msgstr "Konnte Twitter Einstellungen nicht speichern!"
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Synchronisationseinstellungen gespeichert."
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr "Gruppen-Logo"
+
+#: actions/grouplogo.php:150
+#, fuzzy, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr "Du kannst ein Logo für Deine Gruppe hochladen."
+
+#: actions/grouplogo.php:362
+#, fuzzy
+msgid "Pick a square area of the image to be the logo."
+msgstr ""
+"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern"
+
+#: actions/grouplogo.php:396
+msgid "Logo updated."
+msgstr "Logo aktualisiert."
+
+#: actions/grouplogo.php:398
+msgid "Failed updating logo."
+msgstr "Aktualisierung des Logos fehlgeschlagen."
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr "%s Gruppen-Mitglieder"
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr "%s Gruppen-Mitglieder, Seite %d"
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr "Liste der Benutzer in dieser Gruppe."
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+#, fuzzy
+msgid "Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr "Blockieren"
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+#, fuzzy
+msgid "Block this user"
+msgstr "Benutzer blockieren"
+
+#: actions/groupmembers.php:441
+#, fuzzy
+msgid "Make user an admin of the group"
+msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten"
+
+#: actions/groupmembers.php:473
+#, fuzzy
+msgid "Make Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Aktualisierungen von %1$s auf %2$s!"
+
+#: actions/groupsearch.php:52
+#, fuzzy, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. "
+"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
+"mindestens 3 Zeichen bestehen."
+
+#: actions/groupsearch.php:58
+msgid "Group search"
+msgstr "Gruppen-Suche"
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+#, fuzzy
+msgid "No results."
+msgstr "Keine Ergebnisse"
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Gruppen"
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr "Gruppen, Seite %d"
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "Dieser Benutzer hat dich blockiert."
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+msgid "Error removing the block."
+msgstr "Fehler beim Freigeben des Benutzers."
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "IM Einstellungen"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und "
+"senden. Stelle deine Adresse und Einstellungen unten ein."
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "Diese Seite liegt in nicht verfügbar in einem "
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse"
+
+#: actions/imsettings.php:114
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung "
+"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner "
+"Freundeliste hinzugefügt?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "IM Adresse"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber "
+"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM "
+"Programm oder GTalk aufgenommen hast."
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr "Schicke mir Nachrichten mittels Jabber/GTalk."
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert."
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr ""
+"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/"
+"GTalk."
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen."
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr "Keine Jabber-ID"
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Konnte diese Jabber ID nicht normalisieren"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr "Ungültige Jabber-ID"
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr "Diese JabberID hast du schon angegeben."
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet."
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt "
+"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf."
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr "Dies ist nicht deine JabberID."
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr "Posteingang von %s - Seite %d"
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr "Posteingang von %s"
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr ""
+"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten "
+"enthält."
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen"
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr "Ungültige E-Mail-Adresse: %s"
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr "Einladung(en) verschickt"
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr "Lade neue Leute ein"
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr "Du hast diese Benutzer bereits abonniert:"
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr "%s (%s)"
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr ""
+"Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch "
+"abonniert."
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr "Einladung(en) an folgende Personen geschickt:"
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich "
+"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu "
+"wachsen!"
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen."
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr "E-Mail-Adressen"
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr ""
+"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro "
+"Zeile)"
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr "Private Nachricht"
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr ""
+"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht "
+"anfügen."
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr "Senden"
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen."
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -105,373 +1618,506 @@ msgstr ""
"\n"
"Schöne Grüße von %2$s\n"
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
+msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden."
+
+#: actions/joingroup.php:90 lib/command.php:217
+msgid "You are already a member of that group"
+msgstr "Du bist bereits Mitglied dieser Gruppe"
+
+#: actions/joingroup.php:128 lib/command.php:234
#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
-msgstr "%1$s hat deine Nachrichten auf %2$s abonniert."
+msgid "Could not join user %s to group %s"
+msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen"
-#: ../lib/mail.php:126
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-msgstr ""
-"%1$s hat deine Nachrichten auf %2$s abonniert.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Gruß,\n"
-"%4$s.\n"
+msgid "%s joined group %s"
+msgstr "%s ist der Gruppe %s beigetreten"
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
+msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
+
+#: actions/leavegroup.php:90 lib/command.php:268
+msgid "You are not a member of that group."
+msgstr "Du bist kein Mitglied dieser Gruppe."
+
+#: actions/leavegroup.php:119 lib/command.php:278
+msgid "Could not find membership record."
+msgstr "Konnte Mitgliedseintrag nicht finden."
+
+#: actions/leavegroup.php:127 lib/command.php:284
#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
-msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten."
+msgid "Could not remove user %s to group %s"
+msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen"
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid "%1$s's status on %2$s"
-msgstr "%1$s Status auf %2$s"
+msgid "%s left group %s"
+msgstr "%s hat die Gruppe %s verlassen"
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
-
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "%s öffentlicher Stream"
-
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s und Freunde"
-
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
-msgstr "%s öffentliche Zeitleiste"
-
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
-#, php-format
-msgid "%s status"
-msgstr "%s Status"
-
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, php-format
-msgid "%s timeline"
-msgstr "%s Zeitleiste"
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
-#, php-format
-msgid "%s updates from everyone!"
-msgstr "%s Nachrichten von allen!"
-
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer "
-"Mailadresse erhalten.)"
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%"
-"site.broughtbyurl%%)."
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr "**%%site.name%%** ist ein Microbloggingdienst."
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr ""
-"Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder "
-"Nutzernamen genannt werden."
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. "
-"Pflicht."
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 oder mehr Zeichen"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 oder mehr Zeichen, und nicht vergessen!"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr "6 oder mehr Buchstaben. Pflicht."
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt "
-"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf."
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. "
-"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und "
-"Anweisungen, wie dieser benutzt wird."
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer "
-"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf "
-"den Code und die Anweisungen, um ihn zu benutzen."
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr "API-Methode nicht gefunden!"
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr "API-Methode im Aufbau."
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "Über"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Akzeptieren"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "OpenID hinzufügen"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr "OpenIDs hinzufügen oder löschen"
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Adresse"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr ""
-"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro "
-"Zeile)"
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "Alle Abonnements"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "Alle Aktualisierungen für %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten"
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Bereits angemeldet."
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Bereits abonniert!"
+#: actions/login.php:110 actions/login.php:120
+#, fuzzy
+msgid "Invalid or expired token."
+msgstr "Ungültiger Nachrichteninhalt"
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
-msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Falscher Benutzername oder Passwort."
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Abonnement bestätigen"
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
+msgid "Error setting user."
+msgstr "Fehler bei den Nutzereinstellungen."
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Einloggen"
+
+#: actions/login.php:243
+msgid "Login to site"
+msgstr "An Seite anmelden"
+
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Nutzername"
+
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Passwort"
+
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
+
+#: actions/login.php:253 actions/register.php:479
msgid "Automatically login in the future; not for shared computers!"
msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!"
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Passwort vergessen?"
+
+#: actions/login.php:282
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort "
+"ein, bevor die Änderungen an ihren Einstellungen übernommen werden."
+
+#: actions/login.php:286
+#, fuzzy, php-format
+msgid ""
+"Login with your username and password. Don't have a username yet? [Register]"
+"(%%action.register%%) a new account."
+msgstr ""
+"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? "
+"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit "
+"[OpenID](%%action.openidlogin%%)."
+
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:95
+#, php-format
+msgid "%s is already an admin for group \"%s\"."
+msgstr ""
+
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
+msgstr ""
+
+#: actions/makeadmin.php:145
+#, php-format
+msgid "Can't make %s an admin for group %s"
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status"
+msgstr "Kein aktueller Status"
+
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr "Neue Gruppe"
+
+#: actions/newgroup.php:110
+msgid "Use this form to create a new group."
+msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen."
+
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr "Neue Nachricht"
+
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr "Du kannst diesem Benutzer keine Nachricht schicken."
+
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr "Kein Inhalt!"
+
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr "Kein Empfänger angegeben."
+
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise."
+
+#: actions/newmessage.php:181
+#, fuzzy
+msgid "Message sent"
+msgstr "Nachricht"
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr "Direkte Nachricht an %s abgeschickt"
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr "Ajax-Fehler"
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "Neue Nachricht"
+
+#: actions/newnotice.php:199
+msgid "Notice posted"
+msgstr "Nachricht hinzugefügt"
+
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere "
+"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 "
+"Zeichen bestehen."
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr "Volltextsuche"
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr "Suche im Stream nach \"%s\""
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "Updates von %1$s auf %2$s!"
+
+#: actions/noticesearchrss.php:91
+#, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten"
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set his email yet."
+msgstr ""
+"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch "
+"nicht bestätigt."
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr "Stups abgeschickt"
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr "Stups gesendet!"
+
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr "Nachricht hat kein Profil"
+
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "%1$s Status auf %2$s"
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Verbinden"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr "Kein unterstütztes Datenformat."
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "Suche nach Nutzern"
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr "Nachrichtensuche"
+
+#: actions/othersettings.php:60
+msgid "Other Settings"
+msgstr "Andere Einstellungen"
+
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr "Verwalte zahlreiche andere Einstellungen."
+
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
+
+#: actions/othersettings.php:118
+msgid "Automatic shortening service to use."
+msgstr "URL-Auto-Kürzungs-Dienst."
+
+#: actions/othersettings.php:122
+#, fuzzy
+msgid "View profile designs"
+msgstr "Profil Einstellungen"
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
+#: actions/othersettings.php:153
+msgid "URL shortening service is too long (max 50 chars)."
+msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)"
+
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr "Postausgang von %s - Seite %d"
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "Postausgang von %s"
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr ""
+"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten."
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Passwort ändern"
+
+#: actions/passwordsettings.php:69
+msgid "Change your password."
+msgstr "Ändere dein Passwort."
+
+#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
+msgid "Password change"
+msgstr "Passwort geändert"
+
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr "Altes Passwort"
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "Neues Passwort"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 oder mehr Zeichen"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr "Gleiches Passwort wie oben"
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Ändern"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen."
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Passwörter stimmen nicht überein."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Altes Passwort falsch"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr "Fehler beim Speichern des Nutzers, ungültig."
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "Konnte neues Passwort nicht speichern"
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Passwort gespeichert."
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. "
+"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
+"mindestens 3 Zeichen bestehen."
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr "Suche nach anderen Nutzern"
+
+#: actions/peopletag.php:70
+#, php-format
+msgid "Not a valid people tag: %s"
+msgstr "Ungültiger Personen-Tag: %s"
+
+#: actions/peopletag.php:144
+#, php-format
+msgid "Users self-tagged with %s - page %d"
+msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d"
+
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr "Ungültiger Nachrichteninhalt"
+
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr "Profil-Einstellungen"
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr "
+"über dich erfahren können."
+
+#: actions/profilesettings.php:99
+msgid "Profile information"
+msgstr "Profilinformation"
+
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Vollständiger Name"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Homepage"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr ""
+"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site"
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Beschreibe dich selbst in 140 Zeichen"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Beschreibe dich selbst und deine "
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "Biografie"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Aufenthaltsort"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“"
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr "Tags"
+
+#: actions/profilesettings.php:140
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+msgstr ""
+"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder "
+"Leerzeichen getrennt"
+
+#: actions/profilesettings.php:144
+msgid "Language"
+msgstr "Sprache"
+
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr "Bevorzugte Sprache"
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr "Zeitzone"
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?"
+
#: actions/profilesettings.php:160
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
@@ -479,177 +2125,352 @@ msgstr ""
"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-"
"Menschen)"
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr "Avatar"
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr "Avatar aktualisiert."
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
-#, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung "
-"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner "
-"Freundeliste hinzugefügt?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang "
-"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen."
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr "Warte auf die Bestätigung dieser Telefonnummer."
-
-#: ../lib/util.php:1318 lib/util.php:1452
-msgid "Before »"
-msgstr "Ältere"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "Biografie"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
+#: actions/profilesettings.php:221 actions/register.php:223
+#, fuzzy, php-format
+msgid "Bio is too long (max %d chars)."
msgstr "Die Biografie ist zu lang (max. 140 Zeichen)"
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr "Die Nachricht konnte nicht gelöscht werden."
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
+msgstr "Keine Zeitzone ausgewählt."
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)"
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
#, php-format
-msgid "Can't read avatar URL '%s'"
-msgstr "Konnte Avatar-URL nicht öffnen „%s“"
+msgid "Invalid tag: \"%s\""
+msgstr "Ungültiger Tag: „%s“"
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "Konnte neues Passwort nicht speichern"
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr "Autosubscribe konnte nicht aktiviert werden."
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Abbrechen"
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "Konnte Profil nicht speichern."
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Konnte kein OpenID consumer Objekt erzeugen."
+#: actions/profilesettings.php:336
+msgid "Couldn't save tags."
+msgstr "Konnte Tags nicht speichern."
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Konnte diese Jabber ID nicht normalisieren"
+#: actions/profilesettings.php:344
+msgid "Settings saved."
+msgstr "Einstellungen gespeichert."
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
-msgstr "Konnte diese E-Mail-Adresse nicht normalisieren"
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)"
+msgstr ""
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Ändern"
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr "Konnte öffentlichen Stream nicht abrufen."
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
-msgstr "Ändere die E-Mail Verarbeitung"
+#: actions/public.php:129
+#, php-format
+msgid "Public timeline, page %d"
+msgstr "Öffentliche Zeitleiste, Seite %d"
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Passwort ändern"
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Öffentliche Zeitleiste"
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
-msgstr "Ändere dein Passwort"
+#: actions/public.php:151
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Feed des öffentlichen Streams"
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
-msgstr "Ändern der Profileinstellungen"
+#: actions/public.php:155
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Feed des öffentlichen Streams"
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Bestätigen"
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Feed des öffentlichen Streams"
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Adresse bestätigen"
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Bestätigung abgebrochen."
+#: actions/public.php:182
+msgid "Be the first to post!"
+msgstr ""
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
-msgstr "Bestätigungscode"
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Bestätigungscode nicht gefunden."
+#: actions/public.php:233
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
+#: actions/public.php:238
+#, fuzzy, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
+msgstr ""
+"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/"
+"Mikro-blogging) Dienst "
+
+#: actions/publictagcloud.php:57
+msgid "Public tag cloud"
+msgstr "Öffentliche Tag-Wolke"
+
+#: actions/publictagcloud.php:63
+#, php-format
+msgid "These are most popular recent tags on %s "
+msgstr "Das sind die beliebtesten Tags auf %s "
+
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
+msgid "Tag cloud"
+msgstr "Tag-Wolke"
+
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr "Du bist bereits angemeldet!"
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr "Unbekannter Wiederherstellungscode."
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr "Kein Wiederherstellungscode."
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr "Wiederherstellungscode für unbekannten Nutzer."
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr "Fehler beim Bestätigungscode."
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an."
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server."
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr "Wiederherstellung"
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr "Passwort zurücksetzen"
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr "Stelle Passwort wieder her"
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr "Wiederherstellung des Passworts angefordert"
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr "Unbekannter Befehl"
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 oder mehr Zeichen, und nicht vergessen!"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr "Gleiches Passwort wie zuvor"
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein."
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen."
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse."
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr "Fehler beim Speichern der Adressbestätigung."
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"Anweisungen für die Wiederherstellung deines Passworts wurden an deine "
+"hinterlegte E-Mail-Adresse geschickt."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr "Unerwarteter Passwortreset."
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "Passwort muss mehr als 6 Zeichen enthalten"
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "Passwort und seine Bestätigung stimmen nicht überein."
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet."
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
+msgid "Sorry, only invited people can register."
+msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung."
+
+#: actions/register.php:92
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "Fehler beim Bestätigungscode."
+
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr "Registrierung erfolgreich"
+
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr "Registrieren"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr "Registrierung nicht gestattet"
+
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr ""
+"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
+
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr "Ungültige E-Mail-Adresse."
+
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "Diese E-Mail-Adresse existiert bereits."
+
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr "Benutzername oder Passwort falsch."
+
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr ""
+"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. "
+"Pflicht."
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr "6 oder mehr Buchstaben. Pflicht."
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr "Gleiches Passwort wie zuvor. Pflichteingabe."
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "E-Mail"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr ""
+"Wird nur für Updates, wichtige Mitteilungen und zur "
+"Passwortwiederherstellung verwendet"
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr "Längerer Name, bevorzugt dein „echter“ Name"
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr "Meine Texte und Daten sind verfügbar unter"
+
+#: actions/register.php:495
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
+
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr ""
+"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, "
+"Telefonnummer."
+
+#: actions/register.php:537
#, php-format
msgid ""
"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -683,2158 +2504,14 @@ msgstr ""
"* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features "
"zu erfahren"
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Verbinden"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Verbinde bestehendes Konto"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Kontakt"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "Konnte OpenID-Formular nicht erstellen: %s"
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen"
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden"
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "Konnte nicht zum Server umleiten: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "Konnte Avatarinfo nicht speichern"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "Neue Profildaten konnten nicht gespeichert werden."
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr "Die Gegenseite konnte Dich nicht abonnieren."
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr "Konnte nicht abbonieren."
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "Konnte E-Mail-Bestätigung nicht löschen."
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "Konnte Abonnement nicht löschen."
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr "Konnte keine Statusmeldungen finden."
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr "Konnte keinen Anfrage-Token bekommen."
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "Konnte keinen Bestätigungscode einfügen."
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "Konnte neues Abonnement nicht eintragen."
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "Konnte Profil nicht speichern."
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr "Autosubscribe konnte nicht aktiviert werden."
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr "Konnte Nutzereintrag nicht schreiben"
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "Konnte Benutzerdaten nicht aktualisieren."
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Erstellen"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Neuen Nutzer mit diesem Nicknamen erstellen."
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Neues Konto anlegen"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Erzeugen eines Kontos zu einer OpenID, die schon einem Nutzer gehört."
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse"
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr "Aktuelle für den SMS-Dienst bestätigte Telefon-Nummer."
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr "Aktuelle bestätigte E-Mail Adresse"
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr "Momentan"
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr "Datenbankfehler beim Einfügen des Hashtags: %s"
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr "Notiz löschen"
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Beschreibe dich selbst in 140 Zeichen"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "E-Mail"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr "E-Mail-Adresse"
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr "E-Mail-Einstellungen"
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "Diese E-Mail-Adresse existiert bereits."
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "Bestätigung der E-Mail-Adresse"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“"
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr "E-Mail-Adressen"
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein."
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast."
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr "Fehler beim Autorisieren des Tokens"
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr "Fehler beim Verbinden des Nutzers mit der OpenID."
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr "Fehler beim Verbinden des Nutzers."
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr "Fehler beim Einfügen des Avatars"
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr "Neues Profil konnte nicht angelegt werden"
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr "Fehler beim Einfügen des entfernten Profils"
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr "Fehler beim Speichern der Adressbestätigung."
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr "Fehler beim Speichern des entfernten Profils"
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr "Fehler bei Speichern des Profils."
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr "Fehler beim Speichern des Nutzers."
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr "Fehler beim Speichern des Nutzers, ungültig."
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
-msgid "Error setting user."
-msgstr "Fehler bei den Nutzereinstellungen."
-
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr "Fehler beim Aktualisieren des Profils"
-
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr "Fehler beim Aktualisieren des entfernten Profils"
-
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr "Fehler beim Bestätigungscode."
-
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr "Nick wird bereits verwendet"
-
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "FAQ"
-
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr "Aktualisierung des Avatars fehlgeschlagen."
-
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, php-format
-msgid "Feed for friends of %s"
-msgstr "Feed der Freunde von %s"
-
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, php-format
-msgid "Feed for replies to %s"
-msgstr "Feed der Antworten an %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr "Feed für den Tag %s"
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr "Durchsuche den Inhalt der Notices"
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr "Finde Leute auf dieser Seite"
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
-#: actions/login.php:282
+#: actions/register.php:561
msgid ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
msgstr ""
-"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort "
-"ein, bevor die Änderungen an ihren Einstellungen übernommen werden."
+"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer "
+"Mailadresse erhalten.)"
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Vollständiger Name"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)."
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Startseite"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Homepage"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr ""
-"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr "Ich möchte Einträge per E-Mail veröffentlichen."
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr "IM"
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "IM Adresse"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "IM Einstellungen"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort "
-"an, um deine OpenID zu verknüpfen."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier "
-"ein und klicke auf „Hinzufügen“."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-"
-"Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues "
-"zusenden lassen."
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr "Eingehende E-Mail"
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr "Eingehende E-Mail-Adresse entfernt"
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Altes Passwort falsch"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Falscher Benutzername oder Passwort."
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"Anweisungen für die Wiederherstellung deines Passworts wurden an deine "
-"hinterlegte E-Mail-Adresse geschickt."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr "Ungültiger Avatar-URL „%s“"
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr "Ungültige E-Mail-Adresse: %s"
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr "Ungültige Homepage „%s“"
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr "Ungültige Lizenz-URL „%s“"
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr "Ungültiger Nachrichteninhalt"
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr "Ungülte Nachrichten-URI"
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr "Ungültige Nachrichten-URL"
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr "Ungültige Profil-URL „%s“."
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Ungültige Profil-URL (falsches Format)"
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr "Server antwortete mit ungültiger Profil-URL."
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr "Ungültige Größe."
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr "Benutzername oder Passwort falsch."
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr "Einladung(en) verschickt"
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr "Einladung(en) an folgende Personen geschickt:"
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr "Einladen"
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr "Lade neue Leute ein"
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) "
-"(Version %s) betrieben, die unter der [GNU Affero General Public License]"
-"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist."
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet."
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber "
-"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM "
-"Programm oder GTalk aufgenommen hast."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr "Sprache"
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)"
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Aufenthaltsort"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Einloggen"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Mit [OpenID](%%doc.openid%%)-Konto anmelden."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-msgstr ""
-"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? "
-"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit "
-"[OpenID](%%action.openidlogin%%)."
-
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Abmelden"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Längerer Name, bevorzugt dein „echter“ Name"
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Passwort vergessen?"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr ""
-"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch "
-"deaktiviert."
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst."
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Mitglied seit"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr "Microblog von %s"
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
-msgstr ""
-"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-"
-"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %"
-"s."
-
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr "Meine Texte und Daten sind verfügbar unter"
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr "Neu"
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
-#, php-format
-msgid "New email address for posting to %s"
-msgstr "Neue E-Mail-Adresse um auf %s zu schreiben"
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt."
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "Neuer Nutzername"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr "Neue Nachricht"
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "Neues Passwort"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet."
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Nutzername"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr ""
-"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. "
-"Leerzeichen sind nicht erlaubt."
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Nutzername nicht erlaubt."
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Nutzername des Nutzers, dem du folgen möchtest"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Nutzername oder E-Mail"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr "Nein"
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr "Keine Jabber-ID"
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr "Keine Bestätigungsanfrage!"
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-msgid "No carrier selected."
-msgstr "Kein Netzanbieter ausgewählt."
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr "Kein Code eingegeben"
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr "Kein Bestätigungs-Code."
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr "Kein Inhalt!"
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr "Keine E-Mail-Adresse."
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr "Keine ID."
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr "Keine Eingangs-E-Mail-Adresse."
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr "Der entferne Server hat keinen Nutzernamen geliefert."
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr "Kein Nutzername."
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann."
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr "Keine Telefonnummer."
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr "Der entfernte Server hat keine Profil-URL geliefert."
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse."
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr "Keine Anfrage gefunden!"
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr "Keine Ergebnisse"
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr "Keine Größe."
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr "Keine Nachricht mit dieser ID gefunden."
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr "Keine Nachricht mit dieser ID gefunden."
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr "Diese OpenID ist nicht bekannt."
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr "Unbekanntes Dokument."
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr "Unbekannte Nachricht."
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr "Unbekannter Wiederherstellungscode."
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr "Unbekanntes Abonnement"
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr "Unbekannter Benutzer."
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen."
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr "Niemand anzuzeigen!"
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr "Kein Wiederherstellungscode."
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr "Kein registrierter Nutzer."
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr "Kein unterstütztes Datenformat."
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr "Ungültige Jabber-ID"
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr "Ungültige OpenID."
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr "Ungültige E-Mail-Adresse"
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr "Ungültige E-Mail-Adresse."
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr "Ungültiger Nutzername."
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr "Ungültige Profil-URL (falsche Dienste)."
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr "Ungültige Profil-URL (XRDS nicht definiert)."
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr "Ungültige Profil-URL (kein YADIS-Dokument)."
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr "Kein Bild oder defekte Datei."
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr "Nicht autorisiert."
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr "Unerwartete Antwort!"
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr "Nicht gefunden"
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr "Nicht angemeldet."
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr "Nicht abonniert!"
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr "Nachrichtensuche"
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, php-format
-msgid "Notice feed for %s"
-msgstr "Feed der Nachrichten von %s"
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr "Nachricht hat kein Profil"
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr "Nachrichten"
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr "Nachrichten, die mit %s getagt sind"
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr "Altes Passwort"
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr "OpenID-Benutzerkonto erstellen"
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr "OpenID Automatische Übertragung"
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr "OpenID-Anmeldung"
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr "OpenID-URL"
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr "OpenID-Authentifizierung abgebrochen."
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr "OpenID-Authentifizierung fehlgeschlagen: %s"
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr "OpenID-Fehler: %s"
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "OpenID entfernt."
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "OpenID-Einstellungen"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr ""
-"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht "
-"anfügen."
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr "Unvollständiges Hochladen."
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Passwort"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "Passwort und seine Bestätigung stimmen nicht überein."
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "Passwort muss mehr als 6 Zeichen enthalten"
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr "Wiederherstellung des Passworts angefordert"
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Passwort gespeichert."
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Passwörter stimmen nicht überein."
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr "Leute"
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr "Suche nach Nutzern"
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr "Suche nach anderen Nutzern"
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Eigene"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr "Private Nachricht"
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl"
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-msgstr ""
-"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten "
-"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
-"„Abbrechen“."
-
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert."
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Einstellungen"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Einstellungen gesichert."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr "Bevorzugte Sprache"
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr "Privatsphäre"
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr "Problem bei Speichern der Nachricht."
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr "Profil"
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr "Profil-URL"
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr "Profil-Einstellungen"
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr "Profil unbekannt"
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-msgid "Public Stream Feed"
-msgstr "Feed des öffentlichen Streams"
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr "Öffentliche Zeitleiste"
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen."
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr "MicroID für meine E-Mail-Adresse veröffentlichen."
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr "Neueste Tags"
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr "Wiederherstellung"
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr "Stelle Passwort wieder her"
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr "Wiederherstellungscode für unbekannten Nutzer."
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr "Registrieren"
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr "Registrierung nicht gestattet"
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr "Registrierung erfolgreich"
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr "Ablehnen"
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr "Entferntes Profil ohne ein passendes Profil"
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr "Entferntes Abonnement"
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr "Entfernen"
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr "Entferne OpenID"
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-msgstr ""
-"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! "
-"Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu."
-
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr "Antworten"
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
-#, php-format
-msgid "Replies to %s"
-msgstr "Antworten an %s"
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr "Passwort zurücksetzen"
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr "SMS"
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr "SMS-Telefonnummer"
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr "SMS-Einstellungen"
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr "SMS-Konfiguration"
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Gleiches Passwort wie zuvor"
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr "Gleiches Passwort wie zuvor. Pflichteingabe."
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr "Speichern"
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr "Suchen"
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-msgid "Search Stream Feed"
-msgstr "Stream-Feed suchen"
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-msgstr ""
-"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere "
-"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 "
-"Zeichen bestehen."
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. "
-"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
-"mindestens 3 Zeichen bestehen."
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-msgid "Select a carrier"
-msgstr "Wähle einen Netzanbieter"
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr "Senden"
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten."
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr "Informiere mich über neues Abonnements per E-Mail."
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Schicke mir Nachrichten mittels Jabber/GTalk."
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei "
-"meinem Netzbetreiber entstehen können."
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
-"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/"
-"GTalk."
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr "Einstellungen gespeichert."
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr "Die populärsten Tags der letzten Woche"
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr "Jemand anderes hat schon diese OpenID."
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr "Etwas eigenartiges ist passiert."
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr "Sorry, keinen eingehenden E-Mails gestattet."
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails."
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr "Quellcode"
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr "Statistiken"
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr "Gespeicherte OpenID nicht gefunden."
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr "Abonnieren"
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr "Abonnenten"
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr "Abonnement autorisiert"
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr "Abonnement abgelehnt"
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr "Abonnements"
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr "Systemfehler beim hochladen der Datei."
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr "Tags"
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr "Text"
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr "Volltextsuche"
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr "Diese OpenID gehört dir nicht."
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr "Diese Adresse wurde bereits bestätigt."
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr "Dieser Bestätigungscode ist nicht für dich!"
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer."
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr "Diese Datei ist zu groß."
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr "Diese JabberID hast du schon angegeben."
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr "Dies ist bereits deine E-Mail-Adresse."
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr "Dies ist bereits deine Telefonnummer."
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr "Dies ist nicht deine JabberID."
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr "Dies ist nicht deine E-Mail-Adresse."
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr "Dies ist nicht deine Telefonnummer."
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr "Das ist die falsche IM Adresse."
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr "Die Bestätigungsnummer ist falsch."
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet."
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr ""
-"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt."
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr ""
-"Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt."
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr "Die Adresse „%s“\" wurde für dein Konto bestätigt."
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr "Die Adresse wurde entfernt."
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL "
-"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
-"bestätigt werden. Dein Abonnement-Token ist:"
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL "
-"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
-"vollständig abgelehnt werden. Dein Abonnement-Token ist:"
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr "Dies sind die Leute, die %ss Nachrichten lesen."
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr "Dies sind die Leute, die deine Nachrichten lesen."
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr "Dies sind die Leute, deren Nachrichten %s liest."
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr "Dies sind die Leute, deren Nachrichten du liest."
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr ""
-"Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch "
-"abonniert."
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an."
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-"Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann "
-"klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen."
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-"Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir "
-"deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues "
-"Konto erstellen oder mit einem vorhandenen Konto anmelden."
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr "Diese Methode benötigt ein POST oder DELETE."
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr "Diese Methode benötigt ein POST."
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor."
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr "Zeitzone"
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
-msgstr "Keine Zeitzone ausgewählt."
-
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
#: actions/remotesubscribe.php:98
#, php-format
msgid ""
@@ -2847,2163 +2524,455 @@ msgstr ""
"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib "
"deine Profil-URL unten an."
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
-msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden."
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
+msgstr "Entferntes Abonnement"
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
-"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site"
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Abonniere diesen Benutzer"
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst"
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr "Unerwartete Formulareingabe."
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr "Unerwarteter Passwortreset."
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr "Unbekannter Befehl"
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr "Unbekannte OMB-Protokollversion."
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-"Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem "
-"Urheberrecht der Autoren und sind unter der"
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr "Nicht erkannter Adresstyp %s"
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr "Abbestellen"
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr "Nicht unterstützte OMB-Version"
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr "Bildformat wird nicht unterstützt."
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr "Aktualisierungen via SMS"
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr "Aktualisierungen via Instant Messenger (IM)"
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr "Aktualisierungen von %1$s auf %2$s!"
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr "Hochladen"
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-"Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das "
-"Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass "
-"es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur "
-"Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du "
-"auch weitergeben möchtest."
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr "Neues Bild für dein Profil hochladen"
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen."
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr ""
-"Wird nur für Updates, wichtige Mitteilungen und zur "
-"Passwortwiederherstellung verwendet"
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr "Aufgeführte Nutzer existiert nicht."
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr "Benutzer hat kein Profil."
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr "Benutzername"
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
-msgstr "Benutzer nicht gefunden."
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Nutzername des Nutzers, dem du folgen möchtest"
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
-msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?"
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
+msgstr "Profil-URL"
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
-msgstr "Was ist los, %s?"
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
+msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst"
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
-msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“"
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
+msgstr "Abonnieren"
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr "Falscher Bildtyp für „%s“"
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
+msgstr "Ungültige Profil-URL (falsches Format)"
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr "Falsche Bildgröße bei „%s“"
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr "Ja"
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr "Diese OpenID hast du schon angegeben!"
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
+#: actions/remotesubscribe.php:168
+#, fuzzy
msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion "
-"ist irreversibel."
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
+msgstr "Ungültige Profil-URL (kein YADIS-Dokument)."
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
-msgstr "Du bist bereits angemeldet!"
-
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr "Du hast diese Benutzer bereits abonniert:"
-
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr "Der angebene Benutzer gehört nicht zu Deinem Freunde-Netzwerk"
-
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr "Hier kannst du dein Passwort ändern. Wähle ein Gutes!"
-
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr "Du kannst ein neues Konto erstellen, um Nachrichten zu verschicken."
-
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
-#: actions/smssettings.php:69
-#, php-format
-msgid "You can receive SMS messages through email from %%site.name%%."
-msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%."
-
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
-msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr ""
-"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ "
-"klickst."
-
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
-msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-msgstr ""
-"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und "
-"senden. Stelle deine Adresse und Einstellungen unten ein."
-
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr ""
-"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr "
-"über dich erfahren können."
-
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr "Du kannst ein lokales Abonnement erstellen!"
-
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr ""
-"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr "Dieses Profil hast du uns nicht geschickt"
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-msgstr ""
-"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n"
-"\n"
-"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n"
-"\n"
-"Weitere E-Mail-Anweisungen unter %3$s.\n"
-"\n"
-"Viele Grüße,\n"
-"%4$s"
-
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr "Du kannst den Status eines anderen Benutzers nicht löschen."
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen"
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich "
-"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu "
-"wachsen!"
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein."
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr "Deine OpenID-URL"
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server."
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben "
-"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten."
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr "vor wenigen Sekunden"
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr "vor %d Tagen"
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr "vor %d Stunden"
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr "vor %d Minuten"
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr "vor %d Monaten"
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr "vor einem Tag"
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr "vor einer Minute"
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr "vor einem Monat"
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr "vor einem Jahr"
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr "vor einer Stunde"
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr "löschen"
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr "als Antwort auf …"
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr "antworten"
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr "Gleiches Passwort wie oben"
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr "Nicht unterstützter Dateityp"
-
-#: ../lib/util.php:1309 lib/util.php:1443
-msgid "« After"
-msgstr "Früher"
-
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr "Diese Nachricht ist kein Favorit!"
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr "Konnte Favoriten nicht löschen."
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr "Zu Favoriten hinzufügen"
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr ""
-"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert."
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr ""
-"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr "Diese Nachricht ist bereits ein Favorit!"
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr "Konnte keinen Favoriten erstellen."
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr "Aus Favoriten entfernen"
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
-#, php-format
-msgid "%s favorite notices"
-msgstr "%ss Favoriten"
-
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr "Feed von %ss Favoriten"
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr "Posteingang von %s - Seite %d"
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr "Posteingang von %s"
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr ""
-"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten "
-"enthält."
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-"%1$s hat dich zu %2$s (%3$s) eingeladen.\n"
-"\n"
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr "In Zukunft automatisch anmelden; "
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr "Aus Sicherheitsgründen, bitte erneut eingeben "
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr "Anmelden mit deinem Benutzernamen und Passwort. "
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr ""
-"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr "Kein Empfänger angegeben."
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr "Du kannst diesem Benutzer keine Nachricht schicken."
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
-"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise."
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr "Kein solcher Benutzer"
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr "Neue Nachricht"
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr "Nachricht ohne entsprechendes Profil"
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr ""
-"Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden "
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, "
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr ""
-"Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!"
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr "Du kannst eine OpenID von deinem Konto entfernen "
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr "Postausgang von %s - Seite %d"
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr "Postausgang von %s"
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr ""
-"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten."
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen. "
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr "Du kannst dein persönliches Profil hier aktualisieren "
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr "Benutzer ohne passendes Profil"
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr "Dieser Bestätigungscode ist zu alt. "
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr "Keine Erinnerung mehr an dein"
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr "Du wurdest identifiziert. Eingabe eines "
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr "Dein Benutzername auf diesem Server, "
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr "Anweisungen zur Passwort-Wiederherstellung "
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr "Neues Passwort erfolgreich gespeichert. "
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen."
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr ""
-"Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du "
-"vielleicht …"
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit "
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%),"
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr "Feed der Favoriten von %s"
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr "Konnte Favoriten nicht abrufen."
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr "Keine derartige Nachricht."
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen."
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr "Nachricht an %1$s auf %2$s"
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr "Nachricht von %1$s auf %2$s"
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr "Eine Nachricht verschicken"
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, php-format
-msgid "Mobile carrier for your phone. "
-msgstr "Mobilfunkanbieter deines Telefons. "
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr "Direkte Nachricht an %s"
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr "Alle an %s gesendeten direkten Nachrichten"
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr "Von dir gesendete direkte Nachrichten"
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr "Alle von %s gesendeten direkten Nachrichten"
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr "Fehlender Nachrichtentext!"
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr "Empfänger nicht gefunden."
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr ""
-"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen "
-"du nicht befreundet bist."
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr "%s / Favoriten von %s"
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr "%s Aktualisieurng in den Favoriten von %s / %s."
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr "%s hat deine Nachricht als Favorit gespeichert"
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-"%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n"
-"\n"
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter "
-"zu übermitteln, "
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr "Twitter-Einstellungen"
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr "Twitter-Konto"
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr "Derzeit bestätigtes Twitter-Konto."
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr "Twitter-Benutzername"
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr "Keine Leerzeichen, bitte."
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr "Twitter-Passwort"
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr "Sende meine Nachrichten automatisch an Twitter."
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr "Sende lokale „@“-Antworten an Twitter."
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr "Hier meine Twitter-Freunde abonnieren."
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-"Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche "
-"(_) enthalten. Maximal 15 Zeichen."
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr "Das Überprüfen deiner Twitter-Berechtigungen war nicht erfolgreich!"
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr ""
-"Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden."
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr "Konnte Twitter-Einstellungen nicht speichern!"
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr "Twitter-Einstellungen gespeichert."
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr "Das ist nicht dein Twitter-Konto."
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr "Konnte Twitter-Benutzer nicht entfernen."
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr "Twitter-Konto entfernt."
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr "Konnte Twitter-Einstellungen nicht speichern."
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr "Twitter-Einstellungen gespeichert."
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr "Bitte überprüfe die Details um sicherzustellen, dass "
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr "Das Abonnement wurde genehmigt, aber kein "
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr "Das Abonnement wurde abgelehnt, aber kein "
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr "Befehl-Ergebnisse"
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr "Befehl ausgeführt"
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr "Befehl fehlgeschlagen"
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr "Leider ist dieser Befehl noch nicht implementiert."
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr "Abonnements: %1$s\n"
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr "Benutzer hat keine letzte Nachricht"
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr "Nachricht als Favorit markiert."
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr "%1$s (%2$s)"
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr "Vollständiger Name: %s"
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr "Standort: %s"
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr "Homepage: %s"
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr "Über: %s"
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet"
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr "Direkte Nachricht an %s abgeschickt"
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr "Fehler beim Senden der Nachricht"
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest"
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr "%s abonniert"
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest"
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr "%s nicht mehr abonniert"
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr "Befehl noch nicht implementiert."
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr "Benachrichtigung deaktiviert."
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr "Konnte Benachrichtigung nicht deaktivieren."
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr "Benachrichtigung aktiviert."
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr "Konnte Benachrichtigung nicht aktivieren."
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr "Befehle:\n"
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr "Konnte Nachricht nicht einfügen."
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr "Konnte Nachricht nicht mit neuer URI versehen."
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr "Benutzer ohne entsprechendes Profil im System."
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n"
-"\n"
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr "Neue private Nachricht von %s"
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-"%1$s (%2$s) hat dir einen private Nachricht geschickt:\n"
-"\n"
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen."
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr "Dieses Formular sollte sich automatisch abschicken. "
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr "Favoriten"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr "%ss favorisierte Nachrichten"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr "Benutzer"
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr "Posteingang"
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr "Deine eingehenden Nachrichten"
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr "Postausgang"
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr "Deine gesendeten Nachrichten"
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr "Twitter"
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr "Twitter-Integrationseinstellungen"
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr "An"
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr "Konnte Nachricht nicht parsen."
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, php-format
-msgid "%s and friends, page %d"
-msgstr "%s und Freunde, Seite %d"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr "Du kannst dein persönliches Avatar hochladen."
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
-msgid "Avatar settings"
-msgstr "Avatar-Einstellungen"
-
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr "Original"
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr "Vorschau"
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr "Zuschneiden"
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
-msgid "There was a problem with your session token. "
-msgstr ""
-"Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut. "
-
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr ""
-"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern"
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr "Daten verloren."
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-msgid "Lost our file."
-msgstr "Daten verloren."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr "Unbekannter Dateityp"
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr "Kein Profil angegeben."
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr "Kein Benutzer-Profil mit dieser ID."
-
-#: actions/block.php:111 actions/block.php:134
-msgid "Block user"
-msgstr "Benutzer blockieren"
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr "Bist du sicher, dass du diesen Benutzer blockieren möchtest? "
-
-#: actions/block.php:162 actions/block.php:165
-msgid "You have already blocked this user."
-msgstr "Du hast diesen Benutzer bereits blockiert."
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr "Konnte Blockierungsdaten nicht speichern."
-
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been "
-msgstr "Die Adresse „%s“ wurde "
-
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr "Du bist dabei diese Nachricht dauerhaft zu entfernen. "
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr "Zu Favoriten hinzufügen"
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
-#, php-format
-msgid "Edit %s group"
-msgstr "Gruppe %s bearbeiten"
-
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr "Posteingänge müssen aktiviert sein, damit Gruppen funktionieren"
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-msgid "No nickname"
-msgstr "Kein Benutzername"
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-msgid "No such group"
-msgstr "Keine derartige Gruppe"
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten"
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten."
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-msgid "Nickname must have only lowercase letters "
-msgstr "Der Benutzername darf nur aus Kleinbuchstaben bestehen "
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-msgid "description is too long (max 140 chars)."
-msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-msgid "Could not update group."
-msgstr "Konnte Gruppe nicht aktualisieren."
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-msgid "Options saved."
-msgstr "Einstellungen gespeichert."
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr "Warte auf die Bestätigung dieser Adresse. "
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-msgid "Make a new email address for posting to; "
-msgstr "Neue E-Mail-Adresse um Nachrichten auf %s hinzuzufügen; "
-
-#: actions/emailsettings.php:157
-msgid "Send me email when someone "
-msgstr "Schicke mir eine E-Mail, wenn jemand "
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden."
-
-#: actions/emailsettings.php:321
-msgid "That email address already belongs "
-msgstr "Diese E-Mail-Adresse gehört "
-
-#: actions/emailsettings.php:343
-msgid "A confirmation code was sent to the email address you added. "
-msgstr ""
-"Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du "
-"hinzugefügt hast. "
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr "Serverfehler - Benutzer nicht gefunden!"
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest "
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr "Erlaube %s meinen Facebook-Status zu aktualisieren"
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr "Überspringen"
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-msgid "No notice content!"
-msgstr "Kein Inhalt!"
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr "Seitenerstellung"
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-msgid "After"
-msgstr "Später"
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-msgid "Before"
-msgstr "Vorher"
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr "Danke, dass du deine Freunde zu %s einlädst"
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr "Einladungen an folgende Personen geschickt:"
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, php-format
-msgid "You have been invited to %s"
-msgstr "Du wurdest von %s angestupst"
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, php-format
-msgid "Invite your friends to use %s"
-msgstr "Lade deine Freunde ein %s zu nutzen"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr "Freunde, die %s bereits benutzen:"
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr "Einladungen versenden"
-
-#: actions/facebookremove.php:56
-msgid "Couldn't remove Facebook user."
-msgstr "Konnte Facebook-Benutzer nicht entfernen."
-
-#: actions/facebooksettings.php:65
-msgid "There was a problem saving your sync preferences!"
-msgstr ""
-"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen."
-
-#: actions/facebooksettings.php:67
-msgid "Sync preferences saved."
-msgstr "Synchronisationseinstellungen gespeichert."
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr ""
-"Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren."
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr "Schicke „@“-Antworten an Facebook."
-
-#: actions/facebooksettings.php:106
-msgid "Prefix"
-msgstr "Präfix"
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr "Eine Zeichenfolge, die deinen Nachrichten vorangestellt wird."
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr "Wenn du %s automatisch aktualisieren lassen möchtest "
-
-#: actions/facebooksettings.php:147
-msgid "Sync preferences"
-msgstr "Synchronisationseinstellungen"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-msgid "Disfavor favorite"
-msgstr "Aus Favoriten entfernen"
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-msgid "Popular notices"
-msgstr "Beliebte Nachrichten"
-
-#: actions/favorited.php:67
-#, php-format
-msgid "Popular notices, page %d"
-msgstr "Beliebte Nachrichten, Seite %d"
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite."
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr "Top-Benutzer"
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr "Top-Benutzer, Seite %d"
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr "Eine Auswahl der tollen Benutzer auf %s"
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren."
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr "Keine ID"
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr "Gruppen-Logo"
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr "Du kannst ein Logo für Deine Gruppe hochladen."
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-msgid "Logo updated."
-msgstr "Logo aktualisiert."
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-msgid "Failed updating logo."
-msgstr "Aktualisierung des Logos fehlgeschlagen."
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr "%s Gruppen-Mitglieder"
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr "%s Gruppen-Mitglieder, Seite %d"
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr "Liste der Benutzer in dieser Gruppe."
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr "Gruppen"
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr "Gruppen, Seite %d"
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr "%%%%site.name%%%%-Gruppen - finde und tausche dich aus mit "
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
-
-#: actions/groupsearch.php:57
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr ""
-"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. "
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-msgid "Group search"
-msgstr "Gruppen-Suche"
-
-#: actions/imsettings.php:70
-msgid "You can send and receive notices through "
-msgstr "Du kannst Nachrichten senden und empfangen über "
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr "Jabber- oder GTalk-Adressen, "
-
-#: actions/imsettings.php:147
-msgid "Send me replies through Jabber/GTalk "
-msgstr "Schicke mir Nachrichten mittels Jabber/GTalk "
-
-#: actions/imsettings.php:321
-#, php-format
-msgid "A confirmation code was sent "
-msgstr "Es wurde ein Bestätigungscode gesendet "
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden."
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-msgid "You are already a member of that group"
-msgstr "Du bist bereits Mitglied dieser Gruppe"
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, php-format
-msgid "Could not join user %s to group %s"
-msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen"
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr "%s ist der Gruppe %s beigetreten"
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr "Damit Gruppen funktionieren müssen Posteingänge aktiviert sein."
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-msgid "No such group."
-msgstr "Keine derartige Gruppe."
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-msgid "You are not a member of that group."
-msgstr "Du bist kein Mitglied dieser Gruppe."
-
-#: actions/leavegroup.php:100
-msgid "You may not leave a group while you are its administrator."
-msgstr ""
-"Du kannst eine Gruppe nicht verlassen solange du der Administrator bist."
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-msgid "Could not find membership record."
-msgstr "Konnte Mitgliedseintrag nicht finden."
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, php-format
-msgid "Could not remove user %s to group %s"
-msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen"
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr "%s hat die Gruppe %s verlassen"
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr "An Seite anmelden"
-
-#: actions/microsummary.php:69
-msgid "No current status"
-msgstr "Kein aktueller Status"
-
-#: actions/newgroup.php:53
-msgid "New group"
-msgstr "Neue Gruppe"
-
-#: actions/newgroup.php:115 actions/newgroup.php:110
-msgid "Use this form to create a new group."
-msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen."
-
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-msgid "Could not create group."
-msgstr "Konnte Gruppe nicht erstellen."
-
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-msgid "Could not set group membership."
-msgstr "Konnte Gruppenmitgliedschaft nicht setzen."
-
-#: actions/newmessage.php:119 actions/newnotice.php:132
-msgid "That's too long. "
-msgstr "Das ist zu lang. "
-
-#: actions/newmessage.php:134
-msgid "Don't send a message to yourself; "
-msgstr "Schreibe dir selbst keine Nachrichten; "
-
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
-msgid "Notice posted"
-msgstr "Nachricht hinzugefügt"
-
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr "Ajax-Fehler"
-
-#: actions/nudge.php:85
-msgid ""
-"This user doesn't allow nudges or hasn't confirmed or set his email yet."
-msgstr ""
-"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch "
-"nicht bestätigt."
-
-#: actions/nudge.php:94
-msgid "Nudge sent"
-msgstr "Stups abgeschickt"
-
-#: actions/nudge.php:97
-msgid "Nudge sent!"
-msgstr "Stups gesendet!"
-
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-msgid "OpenID login"
-msgstr "OpenID-Anmeldung"
-
-#: actions/openidsettings.php:128
-msgid "Removing your only OpenID "
-msgstr "Entfernen deiner einzigen OpenID "
-
-#: actions/othersettings.php:60
-msgid "Other Settings"
-msgstr "Andere Einstellungen"
-
-#: actions/othersettings.php:71
-msgid "Manage various other options."
-msgstr "Verwalte zahlreiche andere Einstellungen."
-
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr "URL-Auto-Verkürzung"
-
-#: actions/othersettings.php:112
-msgid "Service"
-msgstr "Dienst"
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
-#: actions/othersettings.php:118
-msgid "Automatic shortening service to use."
-msgstr "URL-Auto-Kürzungs-Dienst."
-
-#: actions/othersettings.php:144 actions/othersettings.php:146
-#: actions/othersettings.php:153
-msgid "URL shortening service is too long (max 50 chars)."
-msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)"
-
-#: actions/passwordsettings.php:69
-msgid "Change your password."
-msgstr "Ändere dein Passwort."
-
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
-#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
-msgid "Password change"
-msgstr "Passwort geändert"
-
-#: actions/peopletag.php:35 actions/peopletag.php:70
-#, php-format
-msgid "Not a valid people tag: %s"
-msgstr "Ungültiger Personen-Tag: %s"
-
-#: actions/peopletag.php:47 actions/peopletag.php:144
-#, php-format
-msgid "Users self-tagged with %s - page %d"
-msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d"
-
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr "Benutzer die sich selbst mit „%s“ getagged haben "
-
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
-msgid "Profile information"
-msgstr "Profilinformation"
-
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
-#: actions/profilesettings.php:140
-msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
-msgstr ""
-"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder "
-"Leerzeichen getrennt"
-
-#: actions/profilesettings.php:144
-msgid "Automatically subscribe to whoever "
-msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren "
-
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
-#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Ungültiger Tag: „%s“"
-
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
-#: actions/profilesettings.php:336
-msgid "Couldn't save tags."
-msgstr "Konnte Tags nicht speichern."
-
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
-#: actions/public.php:129
-#, php-format
-msgid "Public timeline, page %d"
-msgstr "Öffentliche Zeitleiste, Seite %d"
-
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr "Konnte öffentlichen Stream nicht abrufen."
-
-#: actions/public.php:220
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-msgstr ""
-"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/"
-"Mikro-blogging) Dienst "
-
-#: actions/publictagcloud.php:57
-msgid "Public tag cloud"
-msgstr "Öffentliche Tag-Wolke"
-
-#: actions/publictagcloud.php:63
-#, php-format
-msgid "These are most popular recent tags on %s "
-msgstr "Das sind die beliebtesten Tags auf %s "
-
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
-msgid "Tag cloud"
-msgstr "Tag-Wolke"
-
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
-msgid "Sorry, only invited people can register."
-msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung."
-
-#: actions/register.php:149
-msgid "You can't register if you don't "
-msgstr "Du kannst dich nicht registrieren, wenn du nicht "
-
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr "Dieses Formular hilft dir beim Erstellen von "
-
-#: actions/register.php:368
-msgid "1-64 lowercase letters or numbers, "
-msgstr "1-64 Kleinbuchstaben oder Ziffern, "
-
-#: actions/register.php:382 actions/register.php:386
-msgid "Used only for updates, announcements, "
-msgstr "Verwendet nur für Aktualisierungen und wichtige Mitteilungen, "
-
-#: actions/register.php:398
-msgid "URL of your homepage, blog, "
-msgstr "URL deiner Homepage, Blogs, "
-
-#: actions/register.php:404
-msgid "Describe yourself and your "
-msgstr "Beschreibe dich selbst und deine "
-
-#: actions/register.php:410
-msgid "Where you are, like \"City, "
-msgstr "Wo du bist, beispielsweise \"Stadt, "
-
-#: actions/register.php:432
-msgid " except this private data: password, "
-msgstr " außer folgende private Daten: Passwort, "
-
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. "
-
-#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr "(Du solltest eine Nachricht per E-Mail erhalten "
-
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:176
+#, fuzzy
+msgid "That’s a local profile! Login to subscribe."
msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden."
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
+#: actions/remotesubscribe.php:183
+#, fuzzy
+msgid "Couldn’t get a request token."
+msgstr "Konnte keinen Anfrage-Token bekommen."
+
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
+#, php-format
+msgid "Replies to %s"
+msgstr "Antworten an %s"
+
#: actions/replies.php:127
#, php-format
msgid "Replies to %s, page %d"
msgstr "Antworten an %s, Seite %d"
-#: actions/showfavorites.php:79
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Feed der Nachrichten von %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Feed der Nachrichten von %s"
+
+#: actions/replies.php:158
#, php-format
-msgid "%s favorite notices, page %d"
+msgid "Replies feed for %s (Atom)"
+msgstr "Feed der Nachrichten von %s"
+
+#: actions/replies.php:198
+#, php-format
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
+msgstr ""
+
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "Nachricht an %1$s auf %2$s"
+
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
msgstr "%ss favorisierte Nachrichten, Seite %d"
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr "Konnte Favoriten nicht abrufen."
+
+#: actions/showfavorites.php:170
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/showfavorites.php:177
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/showfavorites.php:184
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Feed der Freunde von %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
#, php-format
msgid "%s group"
msgstr "%s Gruppe"
-#: actions/showgroup.php:79 actions/showgroup.php:84
+#: actions/showgroup.php:84
#, php-format
msgid "%s group, page %d"
msgstr "%s Gruppe, Seite %d"
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
+#: actions/showgroup.php:218
msgid "Group profile"
msgstr "Gruppenprofil"
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
msgid "URL"
msgstr "URL"
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
msgid "Note"
msgstr "Nachricht"
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
msgid "Group actions"
msgstr "Gruppenaktionen"
-#: actions/showgroup.php:323 actions/showgroup.php:304
-#, php-format
-msgid "Notice feed for %s group"
+#: actions/showgroup.php:328
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Nachrichtenfeed der Gruppe %s"
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
+#: actions/showgroup.php:334
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Nachrichtenfeed der Gruppe %s"
+
+#: actions/showgroup.php:340
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Nachrichtenfeed der Gruppe %s"
+
+#: actions/showgroup.php:345
+#, php-format
+msgid "FOAF for %s group"
+msgstr "Postausgang von %s"
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
msgid "Members"
msgstr "Mitglieder"
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Kein)"
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
+#: actions/showgroup.php:392
msgid "All members"
msgstr "Alle Mitglieder"
-#: actions/showgroup.php:378
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr "Statistiken"
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Erstellen"
+
+#: actions/showgroup.php:448
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-"
-"Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) "
+
+#: actions/showgroup.php:454
+#, fuzzy, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
+msgstr ""
+"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] "
+"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst "
+
+#: actions/showgroup.php:482
+#, fuzzy
+msgid "Admins"
+msgstr "Admin"
+
+#: actions/showmessage.php:81
+msgid "No such message."
+msgstr "Keine derartige Nachricht."
#: actions/showmessage.php:98
-msgid "Only the sender and recipient "
-msgstr "Nur der Absender und Empfänger "
+msgid "Only the sender and recipient may read this message."
+msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen."
+
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "Nachricht an %1$s auf %2$s"
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "Nachricht von %1$s auf %2$s"
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Nachricht hinzugefügt"
+
+#: actions/showstream.php:73
+#, fuzzy, php-format
+msgid " tagged %s"
+msgstr "Nachrichten, die mit %s getagt sind"
-#: actions/showstream.php:73 actions/showstream.php:78
#: actions/showstream.php:79
#, php-format
msgid "%s, page %d"
msgstr "%s, Seite %d"
+#: actions/showstream.php:122
+#, fuzzy, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr "Nachrichtenfeed der Gruppe %s"
+
+#: actions/showstream.php:129
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Feed der Nachrichten von %s"
+
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Feed der Nachrichten von %s"
+
#: actions/showstream.php:143
-msgid "'s profile"
-msgstr "s Profil"
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Feed der Nachrichten von %s"
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-msgid "User profile"
-msgstr "Benutzerprofil"
+#: actions/showstream.php:148
+#, fuzzy, php-format
+msgid "FOAF for %s"
+msgstr "Postausgang von %s"
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
-msgstr "Foto"
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
+msgstr ""
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
-msgstr "Benutzeraktionen"
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
-msgstr "Direkte Nachricht an Benutzer verschickt"
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
-msgstr "Nachricht"
-
-#: actions/showstream.php:451 lib/profileaction.php:157
-msgid "All subscribers"
-msgstr "Alle Abonnenten"
-
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr "Alle Gruppen"
-
-#: actions/showstream.php:542
+#: actions/showstream.php:234
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-"**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst]"
-"(http://de.wikipedia.org/wiki/Mikro-blogging) "
-#: actions/smssettings.php:128
-msgid "Phone number, no punctuation or spaces, "
-msgstr "Telefonnummer, keine Satz- oder Leerzeichen, "
-
-#: actions/smssettings.php:162
-msgid "Send me notices through SMS; "
-msgstr "Schicke mir Nachrichten per SMS; "
-
-#: actions/smssettings.php:335
-msgid "A confirmation code was sent to the phone number you added. "
+#: actions/showstream.php:239
+#, fuzzy, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
msgstr ""
-"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt "
-"hast. "
+"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de."
+"wikipedia.org/wiki/Mikro-blogging) Dienst "
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:58
+msgid "SMS Settings"
+msgstr "SMS-Einstellungen"
+
+#: actions/smssettings.php:69
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%."
+
+#: actions/smssettings.php:91
+#, fuzzy
+msgid "SMS is not available."
+msgstr "Diese Seite liegt in nicht verfügbar in einem "
+
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "Aktuelle für den SMS-Dienst bestätigte Telefon-Nummer."
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
+msgstr "Warte auf die Bestätigung dieser Telefonnummer."
+
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr "Bestätigungscode"
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast."
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr "SMS-Telefonnummer"
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl"
+
+#: actions/smssettings.php:174
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei "
+"meinem Netzbetreiber entstehen können."
+
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr "Keine Telefonnummer."
+
+#: actions/smssettings.php:311
+msgid "No carrier selected."
+msgstr "Kein Netzanbieter ausgewählt."
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr "Dies ist bereits deine Telefonnummer."
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet."
+
+#: actions/smssettings.php:347
+#, fuzzy
+msgid ""
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
+msgstr ""
+"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer "
+"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf "
+"den Code und die Anweisungen, um ihn zu benutzen."
+
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr "Die Bestätigungsnummer ist falsch."
+
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr "Dies ist nicht deine Telefonnummer."
+
+#: actions/smssettings.php:465
msgid "Mobile carrier"
msgstr "Netzanbieter"
+#: actions/smssettings.php:469
+msgid "Select a carrier"
+msgstr "Wähle einen Netzanbieter"
+
+#: actions/smssettings.php:476
+#, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-"
+"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %"
+"s."
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr "Kein Code eingegeben"
+
#: actions/subedit.php:70
msgid "You are not subscribed to that profile."
msgstr "Du hast dieses Profil nicht abonniert."
@@ -5031,1781 +3000,13 @@ msgid "%s subscribers, page %d"
msgstr "%s Abonnenten, Seite %d"
#: actions/subscribers.php:63
-msgid "These are the people who listen to "
-msgstr "Folgende Leute lesen "
+msgid "These are the people who listen to your notices."
+msgstr "Dies sind die Leute, die deine Nachrichten lesen."
#: actions/subscribers.php:67
#, php-format
-msgid "These are the people who "
-msgstr "Folgende Leute "
-
-#: actions/subscriptions.php:52
-#, php-format
-msgid "%s subscriptions"
-msgstr "%s Abonnements"
-
-#: actions/subscriptions.php:54
-#, php-format
-msgid "%s subscriptions, page %d"
-msgstr "%s Abonnements, Seite %d"
-
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices "
-msgstr "Dies sind die Leute, deren Nachrichten "
-
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose "
-msgstr "Dies sind die Leute, deren "
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-msgid "Jabber"
-msgstr "Jabber"
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr "Nachrichten, die mit %s getagt sind, Seite %d"
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr "Nachrichten getagt mit „%s“, neueste zuerst"
-
-#: actions/tagother.php:33
-msgid "Not logged in"
-msgstr "Nicht angemeldet"
-
-#: actions/tagother.php:39
-msgid "No id argument."
-msgstr "Kein id Argument."
-
-#: actions/tagother.php:65
-#, php-format
-msgid "Tag %s"
-msgstr "Tag %s"
-
-#: actions/tagother.php:141
-msgid "Tag user"
-msgstr "Benutzer taggen"
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder "
-"Leerzeichen getrennt"
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr "Es gab ein Problem mit deinem Sessiontoken."
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert "
-"haben."
-
-#: actions/tagother.php:198 actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Konnte Tags nicht speichern."
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr ""
-"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements "
-"hinzuzufügen."
-
-#: actions/tagrss.php:35
-msgid "No such tag."
-msgstr "Tag nicht vorhanden."
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, php-format
-msgid "Microblog tagged with %s"
-msgstr "Mikroblog getaggt mit %s"
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr "Blockieren des Benutzers fehlgeschlagen."
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr "Freigeben des Benutzers fehlgeschlagen."
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-msgid "Not found."
-msgstr "Nicht gefunden."
-
-#: actions/twittersettings.php:71
-msgid "Add your Twitter account to automatically send "
-msgstr "Füge dein Twitter-Konto hinzu zum automatischen Versenden von "
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr "Twitter-Benutzername"
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-msgid "Twitter password"
-msgstr "Twitter-Passwort"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr "Twitter-Freunde"
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr "Für den Benutzernamen gelten nur Nummern, "
-
-#: actions/twittersettings.php:341
-#, php-format
-msgid "Unable to retrieve account information "
-msgstr "Konnte Kontoinformationen nicht abrufen "
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-msgid "Error removing the block."
-msgstr "Fehler beim Freigeben des Benutzers."
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-msgid "No profile id in request."
-msgstr "Keine Profil-ID in der Anfrage."
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-msgid "No profile with that id."
-msgstr "Kein Profil mit dieser ID."
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-msgid "Unsubscribed"
-msgstr "Abbestellt"
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr "%s Gruppen"
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr "%s Gruppen, Seite %d"
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-msgid "Problem saving notice. Unknown user."
-msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer."
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in "
-"ein paar Minuten ab."
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr ""
-"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt."
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-msgid "Upload an avatar"
-msgstr "Avatar hochladen"
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr "Sonstige"
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr "Sonstige Optionen"
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, php-format
-msgid "%s - %s"
-msgstr "%s - %s"
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr "Seite ohne Titel"
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr "Hauptnavigation"
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr "Persönliches Profil und Freundes-Zeitleiste"
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr "Suche nach Leuten oder Text"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Account"
-msgstr "Konto"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil"
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr "Verbinde zu IM, SMS, Twitter"
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr "Von der Seite abmelden"
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr "Auf der Seite anmelden"
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-msgid "Create an account"
-msgstr "Neues Konto erstellen"
-
-#: lib/action.php:341 lib/action.php:418
-msgid "Login with OpenID"
-msgstr "Mit OpenID anmelden"
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-msgid "Help me!"
-msgstr "Hilf mir!"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-msgid "Site notice"
-msgstr "Seitennachricht"
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr "Lokale Ansichten"
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-msgid "Page notice"
-msgstr "Neue Nachricht"
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-msgid "Secondary site navigation"
-msgstr "Unternavigation"
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr "StatusNet-Software-Lizenz"
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-#, fuzzy
-msgid "All "
-msgstr "Alle "
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-#, fuzzy
-msgid "license."
-msgstr "Lizenz."
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-#, fuzzy
-msgid "Block this user"
-msgstr "Benutzer blockieren"
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr "Blockieren"
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-#, fuzzy
-msgid "Disfavor this notice"
-msgstr "Aus Favoriten entfernen"
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden "
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-#, fuzzy
-msgid " a new account."
-msgstr " ein neues Konto."
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-#, fuzzy
-msgid "Published"
-msgstr "Öffentlich"
-
-#: lib/favorform.php:114 lib/favorform.php:140
-#, fuzzy
-msgid "Favor this notice"
-msgstr "Zu den Favoriten hinzufügen"
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr "Daten exportieren"
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr "Tags filtern"
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr "Alle"
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr "Tag"
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-#, fuzzy
-msgid "Choose a tag to narrow list"
-msgstr "Wähle einen Tag, um die Liste einzuschränken"
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-#, fuzzy
-msgid "Go"
-msgstr "Los"
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-#, fuzzy
-msgid "URL of the homepage or blog of the group or topic"
-msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas"
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-#, fuzzy
-msgid "Description"
-msgstr "Beschreibung"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-#, fuzzy
-msgid "Describe the group or topic in 140 chars"
-msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-#, fuzzy
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\""
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr "Gruppe"
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-#, fuzzy
-msgid "Admin"
-msgstr "Admin"
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, fuzzy, php-format
-msgid "Edit %s group properties"
-msgstr "%s Gruppeneinstellungen bearbeiten"
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-#, fuzzy
-msgid "Logo"
-msgstr "Logo"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, fuzzy, php-format
-msgid "Add or edit %s logo"
-msgstr "%s Logo hinzufügen oder bearbeiten"
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr "Gruppen mit den meisten Mitgliedern"
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr "Gruppen mit den meisten Beiträgen"
-
-#: lib/grouptagcloudsection.php:56
-#, fuzzy, php-format
-msgid "Tags in %s group's notices"
-msgstr "Tags in den Nachrichten der Gruppe %s"
-
-#: lib/htmloutputter.php:104
-#, fuzzy
-msgid "This page is not available in a "
-msgstr "Diese Seite liegt in nicht verfügbar in einem "
-
-#: lib/joinform.php:114
-#, fuzzy
-msgid "Join"
-msgstr "Beitreten"
-
-#: lib/leaveform.php:114
-#, fuzzy
-msgid "Leave"
-msgstr "Verlassen"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-#, fuzzy
-msgid "Login with a username and password"
-msgstr "Anmelden mit einem Benutzernamen und Passwort"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-#, fuzzy
-msgid "Sign up for a new account"
-msgstr "Für ein neues Konto registrieren"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr "Anmelden oder registrieren mit OpenID"
-
-#: lib/mail.php:175
-#, fuzzy, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-"Hallo, %s.\n"
-"\n"
-
-#: lib/mail.php:236
-#, fuzzy, php-format
-msgid "%1$s is now listening to "
-msgstr "%1$s liest ab sofort "
-
-#: lib/mail.php:254 lib/mail.php:253
-#, fuzzy, php-format
-msgid "Location: %s\n"
-msgstr "Standort: %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, fuzzy, php-format
-msgid "Homepage: %s\n"
-msgstr "Homepage: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, fuzzy, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-"Biografie: %s\n"
-"\n"
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr "Du wurdest von %s angestupst"
-
-#: lib/mail.php:465
-#, fuzzy, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr "%s$s (%2$s) fragt sich was du so machst "
-
-#: lib/mail.php:555
-#, fuzzy, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt"
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-#, fuzzy
-msgid "From"
-msgstr "Von"
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-#, fuzzy
-msgid "Send a direct notice"
-msgstr "Versende eine direkte Nachricht"
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-#, fuzzy
-msgid "Send a notice"
-msgstr "Nachricht versenden"
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-#, fuzzy
-msgid "Available characters"
-msgstr "Verfügbare Zeichen"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-#, fuzzy
-msgid "in reply to"
-msgstr "als Antwort auf"
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-#, fuzzy
-msgid "Reply to this notice"
-msgstr "Auf diese Nachricht antworten"
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-#, fuzzy
-msgid "Reply"
-msgstr "Antworten"
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-#, fuzzy
-msgid "Delete this notice"
-msgstr "Notiz löschen"
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-#, fuzzy
-msgid "Delete"
-msgstr "Löschen"
-
-#: lib/nudgeform.php:116
-#, fuzzy
-msgid "Nudge this user"
-msgstr "Diesen Benutzer stupsen"
-
-#: lib/nudgeform.php:128
-#, fuzzy
-msgid "Nudge"
-msgstr "Stups"
-
-#: lib/nudgeform.php:128
-#, fuzzy
-msgid "Send a nudge to this user"
-msgstr "Sende diesem Benutzer einen Stupser"
-
-#: lib/personaltagcloudsection.php:56
-#, fuzzy, php-format
-msgid "Tags in %s's notices"
-msgstr "Tags in %ss Nachrichten"
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-#, fuzzy
-msgid "(none)"
-msgstr "(leer)"
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Öffentlich"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr "Benutzer-Gruppen"
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr "Aktuelle Tags"
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr "Featured"
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-msgid "Popular"
-msgstr "Beliebt"
-
-#: lib/searchgroupnav.php:82
-#, fuzzy
-msgid "Notice"
-msgstr "Nachricht"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr "Finde Gruppen auf dieser Seite"
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr "Abschnitt ohne Titel"
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, fuzzy, php-format
-msgid "People %s subscribes to"
-msgstr "Leute, die %s abonniert hat"
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, fuzzy, php-format
-msgid "People subscribed to %s"
-msgstr "Leute, die %s abonniert haben"
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, fuzzy, php-format
-msgid "Groups %s is a member of"
-msgstr "Gruppen zu denen %s gehört"
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, fuzzy, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten"
-
-#: lib/subs.php:53 lib/subs.php:52
-msgid "User has blocked you."
-msgstr "Dieser Benutzer hat dich blockiert."
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-#, fuzzy
-msgid "Subscribe to this user"
-msgstr "Abonniere diesen Benutzer"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr "Nichts"
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr "Top-Schreiber"
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-#, fuzzy
-msgid "Unblock this user"
-msgstr "Benutzer freigeben"
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr "Freigeben"
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr "Lösche dein Abonnement von diesem Benutzer"
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s und Freunde"
-
-#: actions/avatarsettings.php:78
-#, fuzzy, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr "Du kannst dein persönliches Avatar hochladen."
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Avatar aktualisiert."
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-#, fuzzy
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion "
-"ist irreversibel."
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-#, fuzzy
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-#, fuzzy
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr ""
-"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, fuzzy, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr "Du kannst ein Logo für Deine Gruppe hochladen."
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-#, fuzzy
-msgid "Pick a square area of the image to be the logo."
-msgstr ""
-"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern"
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, fuzzy, php-format
-msgid "Microblog by %s group"
-msgstr "Microblog von %s"
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. "
-"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
-"mindestens 3 Zeichen bestehen."
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-#, fuzzy
-msgid "Only logged-in users can send direct messages."
-msgstr "Fehler beim Senden der Nachricht"
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr "Suche im Stream nach \"%s\""
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr ""
-"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort "
-"ein, bevor die Änderungen an ihren Einstellungen übernommen werden."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-#, fuzzy
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr "Feed des öffentlichen Streams"
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-#, fuzzy
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr "Feed des öffentlichen Streams"
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Feed des öffentlichen Streams"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr ""
-"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, "
-"Telefonnummer."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Erstellen"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Gruppenprofil"
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "s Profil"
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, fuzzy, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, fuzzy, php-format
-msgid "FOAF for %s"
-msgstr "Postausgang von %s"
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-#, fuzzy
-msgid "Edit Avatar"
-msgstr "Avatar"
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Profil Einstellungen"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr ""
-"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer "
-"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf "
-"den Code und die Anweisungen, um ihn zu benutzen."
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "Kein solcher Benutzer"
-
-#: actions/twittersettings.php:72
-#, fuzzy
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter "
-"zu übermitteln, "
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, fuzzy, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr ""
-"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden."
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten "
-"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
-"\"Abbrechen\"."
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-#, fuzzy
-msgid "Search for more groups"
-msgstr "Suche nach Leuten oder Text"
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-#, fuzzy
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in "
-"ein paar Minuten ab."
-
-#: lib/action.php:406 lib/action.php:425
-#, fuzzy
-msgid "Connect to SMS, Twitter"
-msgstr "Verbinde zu IM, SMS, Twitter"
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-#, fuzzy
-msgid "Badge"
-msgstr "Stups"
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden "
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, fuzzy, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-"%1$s hat deine Nachrichten auf %2$s abonniert.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Gruß,\n"
-"%4$s.\n"
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-#, fuzzy
-msgid "Search site"
-msgstr "Suchen"
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-#, fuzzy
-msgid "No such attachment."
-msgstr "Unbekanntes Dokument."
-
-#: actions/block.php:149
-#, fuzzy
-msgid "Do not block this user from this group"
-msgstr "Liste der Benutzer in dieser Gruppe."
-
-#: actions/block.php:150
-#, fuzzy
-msgid "Block this user from this group"
-msgstr "Liste der Benutzer in dieser Gruppe."
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "Benutzerprofil"
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s und Freunde, Seite %d"
-
-#: actions/blockedfromgroup.php:108
-#, fuzzy
-msgid "A list of the users blocked from joining this group."
-msgstr "Liste der Benutzer in dieser Gruppe."
-
-#: actions/blockedfromgroup.php:281
-#, fuzzy
-msgid "Unblock user from group"
-msgstr "Freigeben des Benutzers fehlgeschlagen."
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Bestätigungscode"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "Die Nachricht konnte nicht gelöscht werden."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, fuzzy, php-format
-msgid "Invalid alias: \"%s\""
-msgstr "Ungültiger Tag: \"%s\""
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "Konnte keinen Favoriten erstellen."
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "Neue Nachricht"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "Neue Nachricht"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-#, fuzzy
-msgid "Not a valid invitation code."
-msgstr "Ungültiger Nutzername."
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-#, fuzzy
-msgid "No group specified."
-msgstr "Kein Profil angegeben."
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-#, fuzzy
-msgid "User is already blocked from group."
-msgstr "Dieser Benutzer hat dich blockiert."
-
-#: actions/groupblock.php:100
-#, fuzzy
-msgid "User is not a member of group."
-msgstr "Du bist kein Mitglied dieser Gruppe."
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-#, fuzzy
-msgid "Block user from group"
-msgstr "Benutzer blockieren"
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-#, fuzzy
-msgid "You must be logged in to edit a group."
-msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-#, fuzzy
-msgid "Group design"
-msgstr "Gruppen"
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Konnte Benutzerdaten nicht aktualisieren."
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-#, fuzzy
-msgid "Unable to save your design settings!"
-msgstr "Konnte Twitter Einstellungen nicht speichern!"
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Synchronisationseinstellungen gespeichert."
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-#, fuzzy
-msgid "Make user an admin of the group"
-msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-#, fuzzy
-msgid "Make Admin"
-msgstr "Admin"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-#, fuzzy
-msgid "No results."
-msgstr "Keine Ergebnisse"
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-#, fuzzy
-msgid "User is not blocked from group."
-msgstr "Dieser Benutzer hat dich blockiert."
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-#, fuzzy
-msgid "Message sent"
-msgstr "Nachricht"
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "Konnte Profil nicht speichern."
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, fuzzy, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben "
-"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten."
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-#, fuzzy
-msgid "View profile designs"
-msgstr "Profil Einstellungen"
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, fuzzy, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/"
-"Mikro-blogging) Dienst "
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-"
-"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden "
-"lassen."
-
-#: actions/recoverpassword.php:158
-#, fuzzy
-msgid "You've been identified. Enter a new password below. "
-msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein."
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Wiederherstellung des Passworts angefordert"
-
-#: actions/register.php:86 actions/register.php:92
-#, fuzzy
-msgid "Sorry, invalid invitation code."
-msgstr "Fehler beim Bestätigungscode."
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Abonniere diesen Benutzer"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "%ss favorisierte Nachrichten, Seite %d"
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr "Nachrichtenfeed der Gruppe %s"
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr "Nachrichtenfeed der Gruppe %s"
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, fuzzy, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr "Nachrichtenfeed der Gruppe %s"
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, fuzzy, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] "
-"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst "
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-#, fuzzy
-msgid "Admins"
-msgstr "Admin"
-
-#: actions/shownotice.php:101
-#, fuzzy
-msgid "Not a local notice"
-msgstr "Kein lokaler Benutzer."
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, fuzzy, php-format
-msgid " tagged %s"
-msgstr "Nachrichten, die mit %s getagt sind"
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, fuzzy, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr "Nachrichtenfeed der Gruppe %s"
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, fuzzy, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
-msgstr ""
-"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de."
-"wikipedia.org/wiki/Mikro-blogging) Dienst "
+msgid "These are the people who listen to %s's notices."
+msgstr "Dies sind die Leute, die %ss Nachrichten lesen."
#: actions/subscribers.php:108
msgid ""
@@ -6825,7 +3026,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, php-format
+msgid "%s subscriptions"
+msgstr "%s Abonnements"
+
+#: actions/subscriptions.php:54
+#, php-format
+msgid "%s subscriptions, page %d"
+msgstr "%s Abonnements, Seite %d"
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr "Dies sind die Leute, deren Nachrichten du liest."
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "Dies sind die Leute, deren Nachrichten %s liest."
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6835,73 +3055,226 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s liest ab sofort "
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+msgid "Jabber"
+msgstr "Jabber"
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr "SMS"
+
+#: actions/tagother.php:33
+msgid "Not logged in"
+msgstr "Nicht angemeldet"
+
+#: actions/tagother.php:39
+msgid "No id argument."
+msgstr "Kein id Argument."
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr "Tag %s"
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+msgid "User profile"
+msgstr "Benutzerprofil"
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr "Foto"
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr "Benutzer taggen"
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder "
+"Leerzeichen getrennt"
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert "
+"haben."
+
+#: actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Konnte Tags nicht speichern."
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr ""
+"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements "
+"hinzuzufügen."
+
+#: actions/tag.php:68
+#, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr "Nachrichten, die mit %s getagt sind, Seite %d"
+
+#: actions/tag.php:86
#, fuzzy, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr "Feed der Nachrichten von %s"
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Feed der Nachrichten von %s"
+
+#: actions/tag.php:98
#, fuzzy, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr "Feed der Nachrichten von %s"
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
-#, fuzzy
-msgid "This status is already a favorite!"
-msgstr "Diese Nachricht ist bereits ein Favorit!"
+#: actions/tagrss.php:35
+msgid "No such tag."
+msgstr "Tag nicht vorhanden."
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
-#, fuzzy
-msgid "That status is not a favorite!"
-msgstr "Diese Nachricht ist kein Favorit!"
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
+msgstr "API-Methode im Aufbau."
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
-#, fuzzy
-msgid "Could not determine source user."
-msgstr "Konnte öffentlichen Stream nicht abrufen."
+#: actions/unsubscribe.php:77
+msgid "No profile id in request."
+msgstr "Keine Profil-ID in der Anfrage."
-#: actions/twitapifriendships.php:215
-#, fuzzy
-msgid "Target user not specified."
-msgstr "Kein Empfänger angegeben."
+#: actions/unsubscribe.php:84
+msgid "No profile with that id."
+msgstr "Kein Profil mit dieser ID."
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
-#, fuzzy
-msgid "Could not find target user."
-msgstr "Konnte keine Statusmeldungen finden."
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr "Abbestellt"
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
-#, fuzzy, php-format
-msgid "%1$s / Updates mentioning %2$s"
-msgstr "%1$s Antworten an %2$s"
-
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Updates tagged with %1$s on %2$s!"
-msgstr "Updates von %1$s auf %2$s!"
-
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#, php-format
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Abonnement bestätigen"
+
+#: actions/userauthorization.php:110
+#, fuzzy
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
+msgstr ""
+"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten "
+"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
+"\"Abbrechen\"."
+
+#: actions/userauthorization.php:188
#, fuzzy
msgid "License"
msgstr "Lizenz."
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Akzeptieren"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+#, fuzzy
+msgid "Subscribe to this user"
+msgstr "Abonniere diesen Benutzer"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr "Ablehnen"
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "%s Abonnements"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr "Keine Bestätigungsanfrage!"
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr "Abonnement autorisiert"
+
+#: actions/userauthorization.php:249
+#, fuzzy
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL "
+"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
+"bestätigt werden. Dein Abonnement-Token ist:"
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr "Abonnement abgelehnt"
+
+#: actions/userauthorization.php:261
+#, fuzzy
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL "
+"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
+"vollständig abgelehnt werden. Dein Abonnement-Token ist:"
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "Konnte Avatar-URL nicht öffnen „%s“"
+
+#: actions/userauthorization.php:348
+#, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "Falscher Bildtyp für „%s“"
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr "Keine ID."
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
#, fuzzy
msgid "Profile design"
@@ -6917,6 +3290,16 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr "%s Gruppen, Seite %d"
+
+#: actions/usergroups.php:130
+#, fuzzy
+msgid "Search for more groups"
+msgstr "Suche nach Leuten oder Text"
+
#: actions/usergroups.php:153
#, fuzzy, php-format
msgid "%s is not a member of any group."
@@ -6927,48 +3310,300 @@ msgstr "Du bist kein Mitglied dieser Gruppe."
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr "Konnte Nachricht nicht einfügen."
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr "Konnte Nachricht nicht mit neuer URI versehen."
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr "Datenbankfehler beim Einfügen des Hashtags: %s"
+
+#: classes/Notice.php:179
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Problem bei Speichern der Nachricht."
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+msgid "Problem saving notice. Unknown user."
+msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer."
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in "
+"ein paar Minuten ab."
+
+#: classes/Notice.php:194
+#, fuzzy
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in "
+"ein paar Minuten ab."
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr ""
+"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt."
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr "Problem bei Speichern der Nachricht."
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
+
#: classes/User.php:333
#, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr "Nachricht an %1$s auf %2$s"
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr "Profil"
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr "Ändern der Profileinstellungen"
+
+#: lib/accountsettingsaction.php:112
+msgid "Upload an avatar"
+msgstr "Avatar hochladen"
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr "Ändere dein Passwort"
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr "Ändere die E-Mail Verarbeitung"
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "Benutzerprofil"
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr "Sonstige"
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr "Sonstige Optionen"
+
+#: lib/action.php:144
+#, php-format
+msgid "%s - %s"
+msgstr "%s - %s"
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr "Seite ohne Titel"
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr "Hauptnavigation"
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Startseite"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr "Persönliches Profil und Freundes-Zeitleiste"
+
+#: lib/action.php:432
+msgid "Account"
+msgstr "Konto"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil"
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Verbinden"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "Konnte nicht zum Server umleiten: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr "Einladen"
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, fuzzy, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten"
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Abmelden"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr "Von der Seite abmelden"
+
+#: lib/action.php:450
+msgid "Create an account"
+msgstr "Neues Konto erstellen"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr "Auf der Seite anmelden"
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Hilfe"
+
+#: lib/action.php:456
+msgid "Help me!"
+msgstr "Hilf mir!"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr "Suchen"
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr "Suche nach Leuten oder Text"
+
+#: lib/action.php:480
+msgid "Site notice"
+msgstr "Seitennachricht"
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr "Lokale Ansichten"
+
+#: lib/action.php:612
+msgid "Page notice"
+msgstr "Neue Nachricht"
+
+#: lib/action.php:714
+msgid "Secondary site navigation"
+msgstr "Unternavigation"
+
+#: lib/action.php:721
+msgid "About"
+msgstr "Über"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "FAQ"
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr "Privatsphäre"
+
+#: lib/action.php:732
+msgid "Source"
+msgstr "Quellcode"
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Kontakt"
+
+#: lib/action.php:736
+#, fuzzy
+msgid "Badge"
+msgstr "Stups"
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr "StatusNet-Software-Lizenz"
+
+#: lib/action.php:767
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%"
+"site.broughtbyurl%%)."
+
+#: lib/action.php:769
+#, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr "**%%site.name%%** ist ein Microbloggingdienst."
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) "
+"(Version %s) betrieben, die unter der [GNU Affero General Public License]"
+"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist."
+
+#: lib/action.php:785
+msgid "Site content license"
+msgstr "StatusNet-Software-Lizenz"
+
+#: lib/action.php:794
+#, fuzzy
+msgid "All "
+msgstr "Alle "
+
+#: lib/action.php:799
+#, fuzzy
+msgid "license."
+msgstr "Lizenz."
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr "Seitenerstellung"
+
+#: lib/action.php:1062
+msgid "After"
+msgstr "Später"
+
+#: lib/action.php:1070
+msgid "Before"
+msgstr "Vorher"
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr "Es gab ein Problem mit deinem Sessiontoken."
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6990,6 +3625,223 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr "Befehl-Ergebnisse"
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr "Befehl ausgeführt"
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr "Befehl fehlgeschlagen"
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr "Leider ist dieser Befehl noch nicht implementiert."
+
+#: lib/command.php:88
+#, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, fuzzy, php-format
+msgid "Nudge sent to %s"
+msgstr "Stups abgeschickt"
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr "Benutzer hat keine letzte Nachricht"
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr "Nachricht als Favorit markiert."
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr "Vollständiger Name: %s"
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr "Standort: %s"
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr "Homepage: %s"
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr "Über: %s"
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, fuzzy, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet"
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr "Fehler beim Senden der Nachricht"
+
+#: lib/command.php:431
+#, fuzzy, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet"
+
+#: lib/command.php:439
+#, fuzzy, php-format
+msgid "Reply to %s sent"
+msgstr "Auf diese Nachricht antworten"
+
+#: lib/command.php:441
+#, fuzzy
+msgid "Error saving notice."
+msgstr "Problem bei Speichern der Nachricht."
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest"
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr "%s abonniert"
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest"
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr "%s nicht mehr abonniert"
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr "Befehl noch nicht implementiert."
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr "Benachrichtigung deaktiviert."
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr "Konnte Benachrichtigung nicht deaktivieren."
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr "Benachrichtigung aktiviert."
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr "Konnte Benachrichtigung nicht aktivieren."
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "Konnte OpenID-Formular nicht erstellen: %s"
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "Kein Bestätigungs-Code."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+#, fuzzy
+msgid "Go to the installer."
+msgstr "Auf der Seite anmelden"
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr "IM"
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr "Aktualisierungen via Instant Messenger (IM)"
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr "Aktualisierungen via SMS"
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -7039,6 +3891,10 @@ msgstr "Verbinden"
msgid "Sidebar"
msgstr "Suchen"
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr "Text"
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -7060,578 +3916,80 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
-msgstr ""
-
-#: lib/groupnav.php:100
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
#, fuzzy
-msgid "Blocked"
-msgstr "Blockieren"
+msgid "Disfavor this notice"
+msgstr "Aus Favoriten entfernen"
-#: lib/groupnav.php:101
-#, fuzzy, php-format
-msgid "%s blocked users"
-msgstr "Benutzer blockieren"
-
-#: lib/groupnav.php:119
-#, fuzzy, php-format
-msgid "Add or edit %s design"
-msgstr "%s Logo hinzufügen oder bearbeiten"
-
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
-msgstr ""
-
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
-msgstr ""
-
-#: lib/mail.php:648
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
-msgstr ""
-
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
-msgstr ""
-
-#: lib/mail.php:685
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
-msgstr ""
-
-#: lib/mailbox.php:139
-msgid ""
-"You have no private messages. You can send private message to engage other "
-"users in conversation. People can send you messages for your eyes only."
-msgstr ""
-
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
+#: lib/favorform.php:114 lib/favorform.php:140
#, fuzzy
-msgid "in context"
-msgstr "Kein Inhalt!"
+msgid "Favor this notice"
+msgstr "Zu den Favoriten hinzufügen"
-#: lib/profileaction.php:177
-#, fuzzy
-msgid "User ID"
-msgstr "Benutzer"
+#: lib/favorform.php:140
+msgid "Favor"
+msgstr "Zu Favoriten hinzufügen"
-#: lib/searchaction.php:156 lib/searchaction.php:162
-#, fuzzy
-msgid "Search help"
-msgstr "Suchen"
+#: lib/feedlist.php:64
+msgid "Export data"
+msgstr "Daten exportieren"
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
+#: lib/feed.php:85
+msgid "RSS 1.0"
msgstr ""
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
+#: lib/feed.php:87
+msgid "RSS 2.0"
msgstr ""
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr ""
-"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
+#: lib/feed.php:89
+msgid "Atom"
msgstr ""
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "Tag nicht vorhanden."
-
-#: actions/apidirectmessage.php:89
-#, fuzzy, php-format
-msgid "Direct messages from %s"
-msgstr "Direkte Nachricht an %s"
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
-"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden"
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
+#: lib/feed.php:91
+msgid "FOAF"
msgstr ""
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr "Tags filtern"
-#: actions/apigroupjoin.php:110
-#, fuzzy
-msgid "You are already a member of that group."
-msgstr "Du bist bereits Mitglied dieser Gruppe"
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen"
-
-#: actions/apigroupleave.php:114
-#, fuzzy
-msgid "You are not a member of this group."
-msgstr "Du bist kein Mitglied dieser Gruppe."
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen"
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "%s Gruppen"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "Gruppen zu denen %s gehört"
-
-#: actions/apigrouplistall.php:94
-#, fuzzy, php-format
-msgid "groups on %s"
-msgstr "Gruppenaktionen"
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Avatar aktualisiert."
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, fuzzy, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr ""
-"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt."
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-#, fuzzy
-msgid "Unsupported format."
-msgstr "Bildformat wird nicht unterstützt."
-
-#: actions/bookmarklet.php:50
-#, fuzzy
-msgid "Post to "
-msgstr "Foto"
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
-
-#: actions/favoritesrss.php:115
-#, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr "Aktualisierungen von %1$s auf %2$s!"
-
-#: actions/finishremotesubscribe.php:80
-#, fuzzy
-msgid "User being listened to does not exist."
-msgstr "Aufgeführte Nutzer existiert nicht."
-
-#: actions/finishremotesubscribe.php:106
-#, fuzzy
-msgid "You are not authorized."
-msgstr "Nicht autorisiert."
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln."
-
-#: actions/finishremotesubscribe.php:114
-#, fuzzy
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Unbekannte OMB-Protokollversion."
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "Unbekannte Nachricht."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Daten verloren."
-
-#: actions/grouprss.php:133
-#, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr "Aktualisierungen von %1$s auf %2$s!"
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "Diese Seite liegt in nicht verfügbar in einem "
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? "
-"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit "
-"[OpenID](%%action.openidlogin%%)."
-
-#: actions/noticesearchrss.php:89
-#, fuzzy, php-format
-msgid "Updates with \"%s\""
-msgstr "Updates von %1$s auf %2$s!"
-
-#: actions/noticesearchrss.php:91
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten"
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Verbinden"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Beschreibe dich selbst in 140 Zeichen"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Beschreibe dich selbst und deine "
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Die Biografie ist zu lang (max. 140 Zeichen)"
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-#, fuzzy
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr "Ungültige Profil-URL (kein YADIS-Dokument)."
-
-#: actions/remotesubscribe.php:176
-#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
-msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden."
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "Konnte keinen Anfrage-Token bekommen."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/replies.php:158
-#, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/repliesrss.php:72
-#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr "Nachricht an %1$s auf %2$s"
-
-#: actions/showfavorites.php:170
-#, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/showfavorites.php:177
-#, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/showfavorites.php:184
-#, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Feed der Freunde von %s"
-
-#: actions/showfavorites.php:211
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
-msgstr ""
-
-#: actions/showgroup.php:345
-#, php-format
-msgid "FOAF for %s group"
-msgstr "Postausgang von %s"
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Nachricht hinzugefügt"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "Diese Seite liegt in nicht verfügbar in einem "
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Feed der Nachrichten von %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
-#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:110
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
-msgstr ""
-"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten "
-"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
-"\"Abbrechen\"."
-
-#: actions/userauthorization.php:249
-#, fuzzy
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL "
-"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
-"bestätigt werden. Dein Abonnement-Token ist:"
-
-#: actions/userauthorization.php:261
-#, fuzzy
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL "
-"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
-"vollständig abgelehnt werden. Dein Abonnement-Token ist:"
-
-#: actions/userauthorization.php:296
-#, php-format
-msgid "Listener URI ‘%s’ not found here"
-msgstr ""
-
-#: actions/userauthorization.php:301
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:307
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:322
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:338
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:343
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Konnte Avatar-URL nicht öffnen „%s“"
-
-#: actions/userauthorization.php:348
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Falscher Bildtyp für „%s“"
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "Konnte nicht zum Server umleiten: %s"
-
-#: lib/action.php:785
-msgid "Site content license"
-msgstr "StatusNet-Software-Lizenz"
-
-#: lib/command.php:88
-#, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, fuzzy, php-format
-msgid "Nudge sent to %s"
-msgstr "Stups abgeschickt"
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, fuzzy, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet"
-
-#: lib/command.php:431
-#, fuzzy, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet"
-
-#: lib/command.php:439
-#, fuzzy, php-format
-msgid "Reply to %s sent"
-msgstr "Auf diese Nachricht antworten"
-
-#: lib/command.php:441
-#, fuzzy
-msgid "Error saving notice."
-msgstr "Problem bei Speichern der Nachricht."
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "Kein Bestätigungs-Code."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-#, fuzzy
-msgid "Go to the installer."
-msgstr "Auf der Seite anmelden"
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr "Alle"
#: lib/galleryaction.php:139
#, fuzzy
msgid "Select tag to filter"
msgstr "Wähle einen Netzanbieter"
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr "Tag"
+
+#: lib/galleryaction.php:141
+#, fuzzy
+msgid "Choose a tag to narrow list"
+msgstr "Wähle einen Tag, um die Liste einzuschränken"
+
+#: lib/galleryaction.php:143
+#, fuzzy
+msgid "Go"
+msgstr "Los"
+
+#: lib/groupeditform.php:163
+#, fuzzy
+msgid "URL of the homepage or blog of the group or topic"
+msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas"
+
#: lib/groupeditform.php:168
#, fuzzy
msgid "Describe the group or topic"
@@ -7642,11 +4000,288 @@ msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen"
msgid "Describe the group or topic in %d characters"
msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen"
+#: lib/groupeditform.php:172
+#, fuzzy
+msgid "Description"
+msgstr "Beschreibung"
+
+#: lib/groupeditform.php:179
+#, fuzzy
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\""
+
+#: lib/groupeditform.php:187
+#, php-format
+msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+msgstr ""
+
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr "Gruppe"
+
+#: lib/groupnav.php:100
+#, fuzzy
+msgid "Blocked"
+msgstr "Blockieren"
+
+#: lib/groupnav.php:101
+#, fuzzy, php-format
+msgid "%s blocked users"
+msgstr "Benutzer blockieren"
+
+#: lib/groupnav.php:107
+#, fuzzy, php-format
+msgid "Edit %s group properties"
+msgstr "%s Gruppeneinstellungen bearbeiten"
+
+#: lib/groupnav.php:112
+#, fuzzy
+msgid "Logo"
+msgstr "Logo"
+
+#: lib/groupnav.php:113
+#, fuzzy, php-format
+msgid "Add or edit %s logo"
+msgstr "%s Logo hinzufügen oder bearbeiten"
+
+#: lib/groupnav.php:119
+#, fuzzy, php-format
+msgid "Add or edit %s design"
+msgstr "%s Logo hinzufügen oder bearbeiten"
+
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Gruppen mit den meisten Mitgliedern"
+
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Gruppen mit den meisten Beiträgen"
+
+#: lib/grouptagcloudsection.php:56
+#, fuzzy, php-format
+msgid "Tags in %s group's notices"
+msgstr "Tags in den Nachrichten der Gruppe %s"
+
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor."
+
+#: lib/imagefile.php:75
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "Du kannst ein Logo für Deine Gruppe hochladen."
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr "Unvollständiges Hochladen."
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr "Systemfehler beim hochladen der Datei."
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr "Kein Bild oder defekte Datei."
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr "Bildformat wird nicht unterstützt."
+
+#: lib/imagefile.php:118
+msgid "Lost our file."
+msgstr "Daten verloren."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
+msgstr "Unbekannter Dateityp"
+
#: lib/jabber.php:192
#, php-format
msgid "notice id: %s"
msgstr "Neue Nachricht"
+#: lib/joinform.php:114
+#, fuzzy
+msgid "Join"
+msgstr "Beitreten"
+
+#: lib/leaveform.php:114
+#, fuzzy
+msgid "Leave"
+msgstr "Verlassen"
+
+#: lib/logingroupnav.php:80
+#, fuzzy
+msgid "Login with a username and password"
+msgstr "Anmelden mit einem Benutzernamen und Passwort"
+
+#: lib/logingroupnav.php:86
+#, fuzzy
+msgid "Sign up for a new account"
+msgstr "Für ein neues Konto registrieren"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
+msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen."
+
+#: lib/mailbox.php:139
+msgid ""
+"You have no private messages. You can send private message to engage other "
+"users in conversation. People can send you messages for your eyes only."
+msgstr ""
+
+#: lib/mailbox.php:227 lib/noticelist.php:424
+#, fuzzy
+msgid "from"
+msgstr "von"
+
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "Bestätigung der E-Mail-Adresse"
+
+#: lib/mail.php:174
+#, php-format
+msgid ""
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
+msgstr ""
+
+#: lib/mail.php:235
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr "%1$s hat deine Nachrichten auf %2$s abonniert."
+
+#: lib/mail.php:240
+#, fuzzy, php-format
+msgid ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
+msgstr ""
+"%1$s hat deine Nachrichten auf %2$s abonniert.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"Gruß,\n"
+"%4$s.\n"
+
+#: lib/mail.php:253
+#, fuzzy, php-format
+msgid "Location: %s\n"
+msgstr "Standort: %s\n"
+
+#: lib/mail.php:255
+#, fuzzy, php-format
+msgid "Homepage: %s\n"
+msgstr "Homepage: %s\n"
+
+#: lib/mail.php:257
+#, fuzzy, php-format
+msgid ""
+"Bio: %s\n"
+"\n"
+msgstr ""
+"Biografie: %s\n"
+"\n"
+
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr "Neue E-Mail-Adresse um auf %s zu schreiben"
+
+#: lib/mail.php:288
+#, php-format
+msgid ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+msgstr ""
+"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n"
+"\n"
+"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n"
+"\n"
+"Weitere E-Mail-Anweisungen unter %3$s.\n"
+"\n"
+"Viele Grüße,\n"
+"%4$s"
+
+#: lib/mail.php:412
+#, php-format
+msgid "%s status"
+msgstr "%s Status"
+
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr "SMS-Konfiguration"
+
+#: lib/mail.php:462
+#, php-format
+msgid "You've been nudged by %s"
+msgstr "Du wurdest von %s angestupst"
+
+#: lib/mail.php:466
+#, php-format
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
+msgstr ""
+
+#: lib/mail.php:509
+#, php-format
+msgid "New private message from %s"
+msgstr "Neue private Nachricht von %s"
+
+#: lib/mail.php:513
+#, php-format
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
+msgstr ""
+
#: lib/mail.php:554
#, fuzzy, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7693,76 +4328,429 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr "von"
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
msgid "Could not determine file's mime-type!"
msgstr "Konnte öffentlichen Stream nicht abrufen."
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+#, fuzzy
+msgid "Send a direct notice"
+msgstr "Versende eine direkte Nachricht"
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr "An"
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+#, fuzzy
+msgid "Available characters"
+msgstr "Verfügbare Zeichen"
+
+#: lib/noticeform.php:145
+#, fuzzy
+msgid "Send a notice"
+msgstr "Nachricht versenden"
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr "Was ist los, %s?"
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+#, fuzzy
+msgid "in context"
+msgstr "Kein Inhalt!"
+
+#: lib/noticelist.php:498
+#, fuzzy
+msgid "Reply to this notice"
+msgstr "Auf diese Nachricht antworten"
+
+#: lib/noticelist.php:499
+#, fuzzy
+msgid "Reply"
+msgstr "Antworten"
+
+#: lib/nudgeform.php:116
+#, fuzzy
+msgid "Nudge this user"
+msgstr "Diesen Benutzer stupsen"
+
+#: lib/nudgeform.php:128
+#, fuzzy
+msgid "Nudge"
+msgstr "Stups"
+
+#: lib/nudgeform.php:128
+#, fuzzy
+msgid "Send a nudge to this user"
+msgstr "Sende diesem Benutzer einen Stupser"
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr "Neues Profil konnte nicht angelegt werden"
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr "Fehler beim Einfügen des Avatars"
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr "Fehler beim Einfügen des entfernten Profils"
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Notiz löschen"
-#: actions/login.php:110 actions/login.php:120
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "Konnte neues Abonnement nicht eintragen."
+
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Eigene"
+
+#: lib/personalgroupnav.php:104
+msgid "Replies"
+msgstr "Antworten"
+
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr "Favoriten"
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr "Benutzer"
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr "Posteingang"
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr "Deine eingehenden Nachrichten"
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr "Postausgang"
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr "Deine gesendeten Nachrichten"
+
+#: lib/personaltagcloudsection.php:56
+#, fuzzy, php-format
+msgid "Tags in %s's notices"
+msgstr "Tags in %ss Nachrichten"
+
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Abonnements"
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "Alle Abonnements"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Abonnenten"
+
+#: lib/profileaction.php:157
+msgid "All subscribers"
+msgstr "Alle Abonnenten"
+
+#: lib/profileaction.php:177
#, fuzzy
-msgid "Invalid or expired token."
-msgstr "Ungültiger Nachrichteninhalt"
+msgid "User ID"
+msgstr "Benutzer"
-#: lib/command.php:597
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Mitglied seit"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr "Alle Gruppen"
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Öffentlich"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr "Benutzer-Gruppen"
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Aktuelle Tags"
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "Featured"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Beliebt"
+
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "Suchen"
+
+#: lib/searchaction.php:162
+#, fuzzy
+msgid "Search help"
+msgstr "Suchen"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr "Leute"
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr "Finde Leute auf dieser Seite"
+
+#: lib/searchgroupnav.php:82
+#, fuzzy
+msgid "Notice"
+msgstr "Nachricht"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr "Durchsuche den Inhalt der Notices"
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr "Finde Gruppen auf dieser Seite"
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr "Abschnitt ohne Titel"
+
+#: lib/section.php:106
+msgid "More..."
+msgstr ""
+
+#: lib/subgroupnav.php:83
#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "Konnte OpenID-Formular nicht erstellen: %s"
+msgid "People %s subscribes to"
+msgstr "Leute, die %s abonniert hat"
-#: lib/command.php:602
+#: lib/subgroupnav.php:91
+#, fuzzy, php-format
+msgid "People subscribed to %s"
+msgstr "Leute, die %s abonniert haben"
+
+#: lib/subgroupnav.php:99
+#, fuzzy, php-format
+msgid "Groups %s is a member of"
+msgstr "Gruppen zu denen %s gehört"
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+#, fuzzy
+msgid "(none)"
+msgstr "(leer)"
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+msgid "User has blocked you."
+msgstr "Dieser Benutzer hat dich blockiert."
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr "Konnte nicht abbonieren."
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr "Die Gegenseite konnte Dich nicht abonnieren."
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr "Nicht abonniert!"
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "Konnte Abonnement nicht löschen."
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr "Nichts"
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Top-Schreiber"
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr "Lösche dein Abonnement von diesem Benutzer"
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr "Abbestellen"
+
+#: lib/userprofile.php:116
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "Avatar"
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr "Benutzeraktionen"
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Profil Einstellungen"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr "Direkte Nachricht an Benutzer verschickt"
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr "Nachricht"
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr "vor wenigen Sekunden"
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr "vor einer Minute"
+
+#: lib/util.php:848
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
-msgstr ""
+msgid "about %d minutes ago"
+msgstr "vor %d Minuten"
-#: lib/imagefile.php:75
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr "vor einer Stunde"
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr "vor %d Stunden"
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr "vor einem Tag"
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr "vor %d Tagen"
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr "vor einem Monat"
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr "vor %d Monaten"
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr "vor einem Jahr"
+
+#: lib/webcolor.php:82
#, fuzzy, php-format
-msgid "That file is too big. The maximum file size is %s."
-msgstr "Du kannst ein Logo für Deine Gruppe hochladen."
-
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack - not yet implemented.\n"
-"track off - not yet implemented.\n"
-"untrack all - not yet implemented.\n"
-"tracks - not yet implemented.\n"
-"tracking - not yet implemented.\n"
+msgid "%s is not a valid color!"
msgstr ""
+"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten."
+
+#: lib/webcolor.php:123
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex chars."
+msgstr ""
+
+#: scripts/maildaemon.php:48
+msgid "Could not parse message."
+msgstr "Konnte Nachricht nicht parsen."
+
+#: scripts/maildaemon.php:53
+msgid "Not a registered user."
+msgstr "Kein registrierter Nutzer."
+
+#: scripts/maildaemon.php:57
+msgid "Sorry, that is not your incoming email address."
+msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails."
+
+#: scripts/maildaemon.php:61
+msgid "Sorry, no incoming email allowed."
+msgstr "Sorry, keinen eingehenden E-Mails gestattet."
diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo
index f69914abe6..b7bd294470 100644
Binary files a/locale/el/LC_MESSAGES/statusnet.mo and b/locale/el/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po
index a521aaa62f..5abc36274a 100644
--- a/locale/el/LC_MESSAGES/statusnet.po
+++ b/locale/el/LC_MESSAGES/statusnet.po
@@ -5,49 +5,1504 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:16+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:57:58+0000\n"
"Language-Team: Greek\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
-#, php-format
-msgid " Search Stream for \"%s\""
-msgstr "Αναζήτηση ροής για \"%s\""
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr ""
+
+#: actions/all.php:84
+#, fuzzy, php-format
+msgid "%s and friends, page %d"
+msgstr "%s και οι φίλοι του/της"
+
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
+#, php-format
+msgid "%s and friends"
+msgstr "%s και οι φίλοι του/της"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/all.php:127
+#, php-format
msgid ""
-" except this private data: password, email address, IM address, phone number."
+"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, "
-"διεύθυνση IM, τηλεφωνικό νούμερο."
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr "από"
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:132
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
msgstr ""
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s και οι φίλοι του/της"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr ""
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr ""
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr ""
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr ""
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr ""
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr ""
+
+#: actions/apidirectmessage.php:89
+#, php-format
+msgid "Direct messages from %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr ""
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr ""
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr ""
+
+#: actions/apifavoritecreate.php:119
+msgid "This status is already a favorite!"
+msgstr ""
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr ""
+
+#: actions/apifavoritedestroy.php:122
+msgid "That status is not a favorite!"
+msgstr ""
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr ""
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε."
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr ""
+"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου."
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε."
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr ""
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης."
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+#, fuzzy
+msgid "Could not create group."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+#, fuzzy
+msgid "Could not set group membership."
+msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr ""
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, php-format
+msgid "Invalid alias: \"%s\""
+msgstr ""
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+msgid "You are already a member of that group."
+msgstr ""
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
+
+#: actions/apigroupleave.php:114
+msgid "You are not a member of this group."
+msgstr ""
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr ""
+
+#: actions/apigrouplistall.php:94
+#, fuzzy, php-format
+msgid "groups on %s"
+msgstr "Βρες ομάδες στο site"
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "Ομάδες χρηστών"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr ""
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr ""
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Ρυθμίσεις OpenID"
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr ""
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr ""
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr ""
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+msgid "Unsupported format."
+msgstr ""
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr ""
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr ""
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, fuzzy, php-format
+msgid "%s timeline"
+msgstr "Χρονοδιάγραμμα του χρήστη %s"
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr ""
+
+#: actions/apitimelinementions.php:116
+#, php-format
+msgid "%1$s / Updates mentioning %2$s"
+msgstr ""
+
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr ""
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr ""
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr ""
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr ""
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr ""
+
+#: actions/apiusershow.php:96
+msgid "Not found."
+msgstr ""
+
+#: actions/attachment.php:73
+msgid "No such attachment."
+msgstr ""
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr ""
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr ""
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr ""
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr ""
+
+#: actions/avatarsettings.php:78
+#, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr ""
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr ""
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+#, fuzzy
+msgid "Avatar settings"
+msgstr "Ρυθμίσεις OpenID"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr ""
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr ""
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+msgid "Delete"
+msgstr ""
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr ""
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr ""
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr ""
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr ""
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr ""
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr ""
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr ""
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Ρυθμίσεις OpenID"
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+#, fuzzy
+msgid "No nickname"
+msgstr "Νέο ψευδώνυμο"
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+#, fuzzy
+msgid "No such group"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s και οι φίλοι του/της"
+
+#: actions/blockedfromgroup.php:108
+msgid "A list of the users blocked from joining this group."
+msgstr ""
+
+#: actions/blockedfromgroup.php:281
+msgid "Unblock user from group"
+msgstr ""
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr ""
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+msgid "Unblock this user"
+msgstr ""
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr ""
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr ""
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr ""
+
+#: actions/block.php:111 actions/block.php:134
+msgid "Block user"
+msgstr ""
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr ""
+
+#: actions/block.php:149
+msgid "Do not block this user from this group"
+msgstr ""
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr ""
+
+#: actions/block.php:150
+msgid "Block this user from this group"
+msgstr ""
+
+#: actions/block.php:165
+msgid "You have already blocked this user."
+msgstr ""
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr ""
+
+#: actions/bookmarklet.php:50
+msgid "Post to "
+msgstr ""
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr ""
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr ""
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr ""
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr ""
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης."
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Επιβεβαίωση διεύθυνσης"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr ""
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Τοποθεσία"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr ""
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr ""
+
+#: actions/deletenotice.php:71
+#, fuzzy
+msgid "Can't delete this notice."
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#: actions/deletenotice.php:103
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr "Διαγραφή μηνύματος"
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+msgid "Delete this notice"
+msgstr ""
+
+#: actions/deletenotice.php:157
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr ""
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr ""
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr ""
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr ""
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr ""
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr ""
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr ""
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
+
+#: actions/editgroup.php:253
+#, fuzzy
+msgid "Could not update group."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/editgroup.php:269
+msgid "Options saved."
+msgstr ""
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr "Ρυθμίσεις Email"
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr ""
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Διεύθυνση"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση."
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr ""
+
+#: actions/emailsettings.php:113
+#, fuzzy
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το "
+"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. "
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr "Διεύθυνση Email"
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\""
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Προσθήκη"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr "Εισερχόμενο email"
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr ""
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr ""
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr ""
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Προτιμήσεις"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr ""
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr ""
+
+#: actions/emailsettings.php:174
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr ""
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr ""
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email"
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr ""
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr ""
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr ""
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης"
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr ""
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr ""
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr ""
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης."
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που "
+"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
+"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr ""
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr ""
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Η επιβεβαίωση ακυρώθηκε."
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr ""
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr ""
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr ""
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη."
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr ""
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr ""
+
+#: actions/favorited.php:67
+#, php-format
+msgid "Popular notices, page %d"
+msgstr ""
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr ""
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr ""
+
+#: actions/favoritesrss.php:115
+#, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr ""
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr ""
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+msgid "Disfavor favorite"
+msgstr ""
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr ""
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr ""
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr ""
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "Μήνυμα"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "Μήνυμα"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:80
+msgid "User being listened to does not exist."
+msgstr ""
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr ""
+
+#: actions/finishremotesubscribe.php:106
+msgid "You are not authorized."
+msgstr ""
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
+
+#: actions/finishremotesubscribe.php:114
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr ""
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr ""
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+#, fuzzy
+msgid "No such group."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+msgid "No group specified."
+msgstr ""
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+msgid "User is already blocked from group."
+msgstr ""
+
+#: actions/groupblock.php:100
+msgid "User is not a member of group."
+msgstr ""
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+msgid "Block user from group"
+msgstr ""
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr ""
+
+#: actions/groupdesignsettings.php:68
+msgid "You must be logged in to edit a group."
+msgstr ""
+
+#: actions/groupdesignsettings.php:141
+msgid "Group design"
+msgstr ""
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+msgid "Unable to save your design settings!"
+msgstr ""
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr ""
+
+#: actions/grouplogo.php:150
+#, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr ""
+
+#: actions/grouplogo.php:362
+msgid "Pick a square area of the image to be the logo."
+msgstr ""
+
+#: actions/grouplogo.php:396
+#, fuzzy
+msgid "Logo updated."
+msgstr "Αποσύνδεση"
+
+#: actions/grouplogo.php:398
+msgid "Failed updating logo."
+msgstr ""
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr ""
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr ""
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr ""
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+msgid "Admin"
+msgstr "Διαχειριστής"
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr ""
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+msgid "Block this user"
+msgstr ""
+
+#: actions/groupmembers.php:441
+msgid "Make user an admin of the group"
+msgstr ""
+
+#: actions/groupmembers.php:473
+#, fuzzy
+msgid "Make Admin"
+msgstr "Διαχειριστής"
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr ""
+
+#: actions/groupsearch.php:52
+#, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+
+#: actions/groupsearch.php:58
+msgid "Group search"
+msgstr ""
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+msgid "No results."
+msgstr ""
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr ""
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr ""
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+#, fuzzy
+msgid "Create a new group"
+msgstr "Δημιουργία νέου λογαριασμού"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+msgid "User is not blocked from group."
+msgstr ""
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+msgid "Error removing the block."
+msgstr ""
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "Ρυθμίσεις ΙΜ"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση."
+
+#: actions/imsettings.php:114
+#, fuzzy, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk "
+"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη "
+"λίστα φίλων?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "Διεύθυνση ΙΜ"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr ""
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr ""
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr ""
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr ""
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr ""
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Αδυναμία κανονικοποίησης του Jabber ID"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr ""
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr ""
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr ""
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. "
+"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. "
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr ""
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr ""
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr ""
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr ""
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr ""
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr ""
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr ""
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr ""
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr ""
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr "%s (%s)"
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr ""
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr ""
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr "Διευθύνσεις email"
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)"
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr ""
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr ""
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr ""
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -79,362 +1534,492 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
-#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
msgstr ""
-#: ../lib/mail.php:126
-#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
+#: actions/joingroup.php:90 lib/command.php:217
+msgid "You are already a member of that group"
msgstr ""
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
+#: actions/joingroup.php:128 lib/command.php:234
#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgid "Could not join user %s to group %s"
msgstr ""
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid "%1$s's status on %2$s"
+msgid "%s joined group %s"
msgstr ""
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
-
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "Δημόσια ροή %s"
-
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s και οι φίλοι του/της"
-
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
msgstr ""
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
+#: actions/leavegroup.php:90 lib/command.php:268
+msgid "You are not a member of that group."
+msgstr ""
+
+#: actions/leavegroup.php:119 lib/command.php:278
+msgid "Could not find membership record."
+msgstr ""
+
+#: actions/leavegroup.php:127 lib/command.php:284
#, php-format
-msgid "%s status"
-msgstr "Κατάσταση του/της %s"
+msgid "Could not remove user %s to group %s"
+msgstr ""
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, fuzzy, php-format
-msgid "%s timeline"
-msgstr "Χρονοδιάγραμμα του χρήστη %s"
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid "%s updates from everyone!"
+msgid "%s left group %s"
msgstr ""
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για "
-"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)"
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, fuzzy, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που "
-"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). "
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, fuzzy, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr ""
-"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). "
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο."
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 ή περισσότεροι χαρακτήρες"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο."
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. "
-"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. "
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που "
-"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
-"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που "
-"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
-"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή."
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "Περί"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Αποδοχή"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Προσθήκη"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "Προσθήκη OpenID"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr "Προσθήκη ή διαγραφή OpenIDs"
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Διεύθυνση"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)"
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "Όλες οι συνδρομές"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "Όλες οι ενημερώσεις για %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\""
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Ήδη συνδεδεμένος."
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Είσαι ήδη συνδρομητής!."
+#: actions/login.php:110 actions/login.php:120
+msgid "Invalid or expired token."
+msgstr ""
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
-msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Λάθος όνομα χρήστη ή κωδικός"
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Εξουσιοδοτημένη συνδρομή"
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
+msgid "Error setting user."
+msgstr ""
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Σύνδεση"
+
+#: actions/login.php:243
+msgid "Login to site"
+msgstr ""
+
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Ψευδώνυμο"
+
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Κωδικός"
+
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr ""
+
+#: actions/login.php:253 actions/register.php:479
msgid "Automatically login in the future; not for shared computers!"
msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!"
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;"
+
+#: actions/login.php:282
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό "
+"σας, πριν αλλάξετε τις ρυθμίσεις σας."
+
+#: actions/login.php:286
+#, fuzzy, php-format
+msgid ""
+"Login with your username and password. Don't have a username yet? [Register]"
+"(%%action.register%%) a new account."
+msgstr ""
+"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη "
+"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή "
+"δοκιμάστε το [OpenID](%%action.openidlogin%%). "
+
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:95
+#, php-format
+msgid "%s is already an admin for group \"%s\"."
+msgstr ""
+
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
+msgstr ""
+
+#: actions/makeadmin.php:145
+#, php-format
+msgid "Can't make %s an admin for group %s"
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status"
+msgstr ""
+
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr ""
+
+#: actions/newgroup.php:110
+msgid "Use this form to create a new group."
+msgstr ""
+
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr ""
+
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr ""
+
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr ""
+
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr ""
+
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#: actions/newmessage.php:181
+msgid "Message sent"
+msgstr ""
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr ""
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr ""
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr ""
+
+#: actions/newnotice.php:199
+msgid "Notice posted"
+msgstr ""
+
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr ""
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr "Αναζήτηση ροής για \"%s\""
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, php-format
+msgid "Updates with \"%s\""
+msgstr ""
+
+#: actions/noticesearchrss.php:91
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\""
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set his email yet."
+msgstr ""
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr ""
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr ""
+
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr ""
+
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr ""
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Σύνδεση"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr ""
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr ""
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr ""
+
+#: actions/othersettings.php:60
+#, fuzzy
+msgid "Other Settings"
+msgstr "Ρυθμίσεις OpenID"
+
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr ""
+
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
+
+#: actions/othersettings.php:118
+msgid "Automatic shortening service to use."
+msgstr ""
+
+#: actions/othersettings.php:122
+msgid "View profile designs"
+msgstr ""
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
+#: actions/othersettings.php:153
+#, fuzzy
+msgid "URL shortening service is too long (max 50 chars)."
+msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
+
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr ""
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr ""
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr ""
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Αλλαγή κωδικού"
+
+#: actions/passwordsettings.php:69
+#, fuzzy
+msgid "Change your password."
+msgstr "Αλλαγή κωδικού"
+
+#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
+#, fuzzy
+msgid "Password change"
+msgstr "Ο κωδικός αποθηκεύτηκε."
+
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr ""
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "Νέος κωδικός"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 ή περισσότεροι χαρακτήρες"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr ""
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Αλλαγή"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr ""
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Οι κωδικοί δεν ταυτίζονται."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Λάθος παλιός κωδικός"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr ""
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "Αδύνατη η αποθήκευση του νέου κωδικού"
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Ο κωδικός αποθηκεύτηκε."
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr ""
+
+#: actions/peopletag.php:70
+#, php-format
+msgid "Not a valid people tag: %s"
+msgstr ""
+
+#: actions/peopletag.php:144
+#, php-format
+msgid "Users self-tagged with %s - page %d"
+msgstr ""
+
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr ""
+
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr ""
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+
+#: actions/profilesettings.php:99
+msgid "Profile information"
+msgstr ""
+
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Ονοματεπώνυμο"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Αρχική σελίδα"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr ""
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "Βιογραφικό"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Τοποθεσία"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr ""
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr ""
+
+#: actions/profilesettings.php:140
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+msgstr ""
+
+#: actions/profilesettings.php:144
+msgid "Language"
+msgstr ""
+
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr ""
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr ""
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr ""
+
#: actions/profilesettings.php:160
#, fuzzy
msgid ""
@@ -443,180 +2028,343 @@ msgstr ""
"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση "
"κυρίως από λογισμικό και όχι ανθρώπους)"
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr ""
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr ""
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
+#: actions/profilesettings.php:221 actions/register.php:223
#, fuzzy, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk "
-"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη "
-"λίστα φίλων?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-#, fuzzy
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το "
-"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. "
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
-
-#: ../lib/util.php:1318 lib/util.php:1452
-#, fuzzy
-msgid "Before »"
-msgstr "Προηγούμενο »"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "Βιογραφικό"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
+msgid "Bio is too long (max %d chars)."
msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-#, fuzzy
-msgid "Can't delete this notice."
-msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
+msgstr ""
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr ""
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
#, php-format
-msgid "Can't read avatar URL '%s'"
+msgid "Invalid tag: \"%s\""
msgstr ""
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "Αδύνατη η αποθήκευση του νέου κωδικού"
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή."
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Ακύρωση"
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "Απέτυχε η αποθήκευση του προφίλ."
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Απέτυχη η χρήση αντικειμένου OpenID consumer."
+#: actions/profilesettings.php:336
+#, fuzzy
+msgid "Couldn't save tags."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Αδυναμία κανονικοποίησης του Jabber ID"
-
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
-msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης"
-
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Αλλαγή"
-
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
+#: actions/profilesettings.php:344
+msgid "Settings saved."
msgstr ""
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Αλλαγή κωδικού"
-
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
-msgstr "Αλλάξτε τον κωδικό σας"
-
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
-msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας"
-
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Επιβεβαίωση"
-
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Επιβεβαίωση διεύθυνσης"
-
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Η επιβεβαίωση ακυρώθηκε."
-
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)"
msgstr ""
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr ""
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
+#: actions/public.php:129
+#, php-format
+msgid "Public timeline, page %d"
+msgstr ""
+
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr ""
+
+#: actions/public.php:151
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr ""
+
+#: actions/public.php:155
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr ""
+
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Δημόσια ροή %s"
+
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
+
+#: actions/public.php:182
+msgid "Be the first to post!"
+msgstr ""
+
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
+
+#: actions/public.php:233
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
+
+#: actions/public.php:238
+#, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
+msgstr ""
+
+#: actions/publictagcloud.php:57
+msgid "Public tag cloud"
+msgstr ""
+
+#: actions/publictagcloud.php:63
+#, php-format
+msgid "These are most popular recent tags on %s "
+msgstr ""
+
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
+msgid "Tag cloud"
+msgstr ""
+
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr ""
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr ""
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr ""
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr ""
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr ""
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr ""
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr ""
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr ""
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr ""
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr ""
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr ""
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr ""
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr ""
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr ""
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr ""
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr ""
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr ""
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email "
+"που έχετε καταχωρίσει στον λογαριασμό σας."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr ""
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι."
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται."
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr ""
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
+msgid "Sorry, only invited people can register."
+msgstr ""
+
+#: actions/register.php:92
+msgid "Sorry, invalid invitation code."
+msgstr ""
+
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr ""
+
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr ""
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr ""
+
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr ""
+
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr ""
+
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "Η διεύθυνση email υπάρχει ήδη."
+
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr ""
+
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο."
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο."
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr ""
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "Email"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr ""
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr ""
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr ""
+
+#: actions/register.php:495
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
+
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr ""
+"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, "
+"διεύθυνση IM, τηλεφωνικό νούμερο."
+
+#: actions/register.php:537
#, fuzzy, php-format
msgid ""
"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -650,2113 +2398,14 @@ msgstr ""
"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία "
"μας."
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Σύνδεση"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Σύνδεση με υπάρχων λογαριασμό"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Επικοινωνία"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s "
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr ""
-"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου."
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε."
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "Δε μπόρεσα να σώσω την πληροφορία του avatar"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr "Απέτυχε η συνδρομή."
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης."
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "Απέτυχε η διαγραφή συνδρομής."
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης."
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr ""
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης."
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "Απέτυχε η αποθήκευση του προφίλ."
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή."
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη."
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "Απέτυχε η ενημέρωση του χρήστη."
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Δημιουργία"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Δημιουργία νέου χρήστη με αυτό το ψευδώνυμο."
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Δημιουργία νέου λογαριασμού"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-#, fuzzy
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Μετατροπή υπάρχοντος λογαριασμού σε λογαριασμό OpenID."
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση."
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου."
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση."
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr ""
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr "Διαγραφή μηνύματος"
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "Email"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr "Διεύθυνση Email"
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr "Ρυθμίσεις Email"
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "Η διεύθυνση email υπάρχει ήδη."
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "Επιβεβαίωση διεύθυνσης email"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\""
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr "Διευθύνσεις email"
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr ""
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr ""
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr ""
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr ""
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr ""
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr ""
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr ""
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr ""
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
-msgid "Error setting user."
-msgstr ""
-
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr ""
-
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr ""
-
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "Συχνές ερωτήσεις"
-
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr ""
-
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, php-format
-msgid "Feed for friends of %s"
-msgstr "Ροή φίλων του/της %s"
-
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, php-format
-msgid "Feed for replies to %s"
-msgstr "Ροή απαντήσεων προς τον/την %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr ""
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr ""
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr ""
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
-#: actions/login.php:282
+#: actions/register.php:561
msgid ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
msgstr ""
-"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό "
-"σας, πριν αλλάξετε τις ρυθμίσεις σας."
+"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για "
+"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)"
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Ονοματεπώνυμο"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Βοήθεια"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Αρχή"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Αρχική σελίδα"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email"
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr "ΙΜ"
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "Διεύθυνση ΙΜ"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "Ρυθμίσεις ΙΜ"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για "
-"να τον συνδέσετε στο OpenID σας."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον "
-"από κάτω και πατήστε \"Προσθήκη\"."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί "
-"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας."
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr "Εισερχόμενο email"
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Λάθος παλιός κωδικός"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Λάθος όνομα χρήστη ή κωδικός"
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email "
-"που έχετε καταχωρίσει στον λογαριασμό σας."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr ""
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr ""
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr ""
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr ""
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr ""
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr ""
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr ""
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr ""
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr ""
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr ""
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr ""
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr ""
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr ""
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr ""
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr ""
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr ""
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Τοποθεσία"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Σύνδεση"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.openid%%)."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-msgstr ""
-"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη "
-"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή "
-"δοκιμάστε το [OpenID](%%action.openidlogin%%). "
-
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Αποσύνδεση"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr ""
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr ""
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr ""
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Μέλος από"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr ""
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr ""
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr ""
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
-#, php-format
-msgid "New email address for posting to %s"
-msgstr ""
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "Νέο ψευδώνυμο"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr ""
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "Νέος κωδικός"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr ""
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Ψευδώνυμο"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Το ψευδώνυμο αυτό δεν επιτρέπεται."
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Ψευδώνυμο ή email"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr ""
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr ""
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr ""
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-msgid "No carrier selected."
-msgstr ""
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr ""
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr ""
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr ""
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr ""
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr ""
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr ""
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr ""
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr ""
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr ""
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr ""
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr ""
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr ""
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr ""
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr ""
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr ""
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr ""
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr ""
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr ""
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr ""
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr ""
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr ""
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr ""
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr ""
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr ""
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr ""
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr ""
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr ""
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr ""
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr ""
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr ""
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr ""
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr ""
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr ""
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr ""
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, php-format
-msgid "Notice feed for %s"
-msgstr ""
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr ""
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr ""
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr ""
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr ""
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr ""
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr ""
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr ""
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr ""
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr ""
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "Το OpenID αφαιρέθηκε."
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "Ρυθμίσεις OpenID"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr ""
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Κωδικός"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται."
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι."
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr ""
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Ο κωδικός αποθηκεύτηκε."
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Οι κωδικοί δεν ταυτίζονται."
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr ""
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr ""
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr ""
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Προσωπικά"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr ""
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr ""
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-msgstr ""
-
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr ""
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Προτιμήσεις"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr ""
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr ""
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr ""
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr ""
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr ""
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr ""
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr ""
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-msgid "Public Stream Feed"
-msgstr ""
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr ""
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr ""
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr ""
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr ""
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr ""
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr ""
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr ""
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr ""
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr ""
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr ""
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr ""
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr ""
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr ""
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr ""
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr ""
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr ""
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-msgstr ""
-
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr ""
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
-#, php-format
-msgid "Replies to %s"
-msgstr ""
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr ""
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr ""
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr ""
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr ""
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr ""
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr ""
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr ""
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr ""
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr ""
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr ""
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-msgid "Search Stream Feed"
-msgstr ""
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-msgstr ""
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-msgid "Select a carrier"
-msgstr ""
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr ""
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr ""
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr ""
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr ""
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr ""
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr ""
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr ""
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr ""
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr ""
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr ""
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr ""
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr ""
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr ""
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr ""
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr ""
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr ""
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr ""
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr ""
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr ""
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr ""
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr ""
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr ""
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr ""
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr ""
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr ""
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr ""
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr ""
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr ""
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr ""
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr ""
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr ""
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr ""
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr ""
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr ""
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr ""
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr ""
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr ""
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr ""
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr ""
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr ""
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr ""
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr ""
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr ""
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr ""
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr ""
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr ""
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr ""
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
#: actions/remotesubscribe.php:98
#, php-format
msgid ""
@@ -2765,2110 +2414,446 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
msgstr ""
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr ""
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr ""
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr ""
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr ""
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr ""
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr ""
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr ""
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr ""
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr ""
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr ""
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr ""
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr ""
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr ""
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr ""
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr ""
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr ""
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε"
+
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
msgstr ""
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
msgstr ""
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
msgstr ""
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
msgstr ""
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr ""
-
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr ""
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr ""
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr ""
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
+#: actions/remotesubscribe.php:168
msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
msgstr ""
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
+#: actions/remotesubscribe.php:176
+msgid "That’s a local profile! Login to subscribe."
msgstr ""
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr ""
-
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr ""
-
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr ""
-
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr ""
-
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
-#: actions/smssettings.php:69
-#, php-format
-msgid "You can receive SMS messages through email from %%site.name%%."
-msgstr ""
-
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
-msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr ""
-
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
-msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-msgstr ""
-
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr ""
-
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr ""
-
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr ""
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr ""
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr ""
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr ""
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr ""
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr ""
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr ""
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr ""
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr ""
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr ""
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr ""
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr ""
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr ""
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr ""
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr ""
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr ""
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr ""
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr ""
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr ""
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr ""
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr ""
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr ""
-
-#: ../lib/util.php:1309 lib/util.php:1443
-msgid "« After"
-msgstr ""
-
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr ""
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr ""
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr ""
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr ""
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr ""
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr ""
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr ""
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr ""
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
-#, php-format
-msgid "%s favorite notices"
-msgstr ""
-
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr ""
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr ""
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr ""
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr ""
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr ""
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr ""
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr ""
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr ""
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr ""
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr ""
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr ""
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr ""
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr ""
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr ""
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr ""
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr ""
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr ""
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr ""
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr ""
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr ""
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr ""
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr ""
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr ""
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr ""
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr ""
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr ""
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr ""
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr ""
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr ""
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr ""
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr ""
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr ""
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr ""
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr ""
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr ""
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr ""
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr ""
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr ""
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr ""
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr ""
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, php-format
-msgid "Mobile carrier for your phone. "
-msgstr ""
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr ""
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr ""
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr ""
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr ""
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr ""
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr ""
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr ""
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr ""
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr ""
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr ""
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr ""
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr ""
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr ""
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr ""
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr ""
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr ""
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr ""
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr ""
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr ""
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr ""
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr ""
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr ""
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr ""
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr ""
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr ""
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr ""
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr ""
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr ""
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr ""
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr ""
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr ""
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr ""
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr ""
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr ""
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr ""
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr ""
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr ""
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr ""
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr ""
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr ""
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr ""
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr ""
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr ""
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr ""
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr ""
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr ""
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr ""
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr ""
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr ""
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr ""
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr ""
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr ""
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr ""
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr ""
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr ""
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr ""
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr ""
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr ""
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr ""
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr ""
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr ""
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr ""
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr ""
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr ""
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr ""
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr ""
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr ""
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, fuzzy, php-format
-msgid "%s and friends, page %d"
-msgstr "%s και οι φίλοι του/της"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr ""
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
+#: actions/remotesubscribe.php:183
#, fuzzy
-msgid "Avatar settings"
-msgstr "Ρυθμίσεις OpenID"
+msgid "Couldn’t get a request token."
+msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr ""
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr ""
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr ""
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
-msgid "There was a problem with your session token. "
-msgstr ""
-
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr ""
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr ""
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-#, fuzzy
-msgid "Lost our file."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr ""
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr ""
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr ""
-
-#: actions/block.php:111 actions/block.php:134
-msgid "Block user"
-msgstr ""
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr ""
-
-#: actions/block.php:162 actions/block.php:165
-msgid "You have already blocked this user."
-msgstr ""
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr ""
-
-#: actions/confirmaddress.php:159
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
#, php-format
-msgid "The address \"%s\" has been "
+msgid "Replies to %s"
msgstr ""
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr ""
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr ""
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
-#, php-format
-msgid "Edit %s group"
-msgstr ""
-
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr ""
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr ""
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-#, fuzzy
-msgid "No nickname"
-msgstr "Νέο ψευδώνυμο"
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-#, fuzzy
-msgid "No such group"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr ""
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr ""
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-#, fuzzy
-msgid "Nickname must have only lowercase letters "
-msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-#, fuzzy
-msgid "description is too long (max 140 chars)."
-msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-#, fuzzy
-msgid "Could not update group."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-msgid "Options saved."
-msgstr ""
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr ""
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-msgid "Make a new email address for posting to; "
-msgstr ""
-
-#: actions/emailsettings.php:157
-msgid "Send me email when someone "
-msgstr ""
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr ""
-
-#: actions/emailsettings.php:321
-#, fuzzy
-msgid "That email address already belongs "
-msgstr "Η διεύθυνση email υπάρχει ήδη."
-
-#: actions/emailsettings.php:343
-msgid "A confirmation code was sent to the email address you added. "
-msgstr ""
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr ""
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr ""
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr ""
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr ""
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-msgid "No notice content!"
-msgstr ""
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr ""
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-msgid "After"
-msgstr ""
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-msgid "Before"
-msgstr ""
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr ""
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr ""
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, php-format
-msgid "You have been invited to %s"
-msgstr ""
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, fuzzy, php-format
-msgid "Invite your friends to use %s"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr ""
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr ""
-
-#: actions/facebookremove.php:56
-msgid "Couldn't remove Facebook user."
-msgstr ""
-
-#: actions/facebooksettings.php:65
-msgid "There was a problem saving your sync preferences!"
-msgstr ""
-
-#: actions/facebooksettings.php:67
-#, fuzzy
-msgid "Sync preferences saved."
-msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr ""
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#: actions/facebooksettings.php:106
-msgid "Prefix"
-msgstr ""
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr ""
-
-#: actions/facebooksettings.php:147
-#, fuzzy
-msgid "Sync preferences"
-msgstr "Προτιμήσεις"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-msgid "Disfavor favorite"
-msgstr ""
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-msgid "Popular notices"
-msgstr ""
-
-#: actions/favorited.php:67
-#, php-format
-msgid "Popular notices, page %d"
-msgstr ""
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr ""
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr ""
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr ""
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr ""
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr ""
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr ""
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr ""
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr ""
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-#, fuzzy
-msgid "Logo updated."
-msgstr "Αποσύνδεση"
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-msgid "Failed updating logo."
-msgstr ""
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr ""
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr ""
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr ""
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr ""
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr ""
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr ""
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-#, fuzzy
-msgid "Create a new group"
-msgstr "Δημιουργία νέου λογαριασμού"
-
-#: actions/groupsearch.php:57
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr ""
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-msgid "Group search"
-msgstr ""
-
-#: actions/imsettings.php:70
-msgid "You can send and receive notices through "
-msgstr ""
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr ""
-
-#: actions/imsettings.php:147
-msgid "Send me replies through Jabber/GTalk "
-msgstr ""
-
-#: actions/imsettings.php:321
-#, fuzzy, php-format
-msgid "A confirmation code was sent "
-msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr ""
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-msgid "You are already a member of that group"
-msgstr ""
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, php-format
-msgid "Could not join user %s to group %s"
-msgstr ""
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr ""
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr ""
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr ""
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-#, fuzzy
-msgid "No such group."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-msgid "You are not a member of that group."
-msgstr ""
-
-#: actions/leavegroup.php:100
-msgid "You may not leave a group while you are its administrator."
-msgstr ""
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-msgid "Could not find membership record."
-msgstr ""
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, php-format
-msgid "Could not remove user %s to group %s"
-msgstr ""
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr ""
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr ""
-
-#: actions/microsummary.php:69
-msgid "No current status"
-msgstr ""
-
-#: actions/newgroup.php:53
-msgid "New group"
-msgstr ""
-
-#: actions/newgroup.php:115 actions/newgroup.php:110
-msgid "Use this form to create a new group."
-msgstr ""
-
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-#, fuzzy
-msgid "Could not create group."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-#, fuzzy
-msgid "Could not set group membership."
-msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
-
-#: actions/newmessage.php:119 actions/newnotice.php:132
-msgid "That's too long. "
-msgstr ""
-
-#: actions/newmessage.php:134
-msgid "Don't send a message to yourself; "
-msgstr ""
-
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
-msgid "Notice posted"
-msgstr ""
-
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr ""
-
-#: actions/nudge.php:85
-msgid ""
-"This user doesn't allow nudges or hasn't confirmed or set his email yet."
-msgstr ""
-
-#: actions/nudge.php:94
-msgid "Nudge sent"
-msgstr ""
-
-#: actions/nudge.php:97
-msgid "Nudge sent!"
-msgstr ""
-
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-#, fuzzy
-msgid "OpenID login"
-msgstr "Ρυθμίσεις OpenID"
-
-#: actions/openidsettings.php:128
-msgid "Removing your only OpenID "
-msgstr ""
-
-#: actions/othersettings.php:60
-#, fuzzy
-msgid "Other Settings"
-msgstr "Ρυθμίσεις OpenID"
-
-#: actions/othersettings.php:71
-msgid "Manage various other options."
-msgstr ""
-
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr ""
-
-#: actions/othersettings.php:112
-msgid "Service"
-msgstr ""
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
-#: actions/othersettings.php:118
-msgid "Automatic shortening service to use."
-msgstr ""
-
-#: actions/othersettings.php:144 actions/othersettings.php:146
-#: actions/othersettings.php:153
-#, fuzzy
-msgid "URL shortening service is too long (max 50 chars)."
-msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
-
-#: actions/passwordsettings.php:69
-#, fuzzy
-msgid "Change your password."
-msgstr "Αλλαγή κωδικού"
-
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
-#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
-#, fuzzy
-msgid "Password change"
-msgstr "Ο κωδικός αποθηκεύτηκε."
-
-#: actions/peopletag.php:35 actions/peopletag.php:70
-#, php-format
-msgid "Not a valid people tag: %s"
-msgstr ""
-
-#: actions/peopletag.php:47 actions/peopletag.php:144
-#, php-format
-msgid "Users self-tagged with %s - page %d"
-msgstr ""
-
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr ""
-
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
-msgid "Profile information"
-msgstr ""
-
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
-#: actions/profilesettings.php:140
-msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
-msgstr ""
-
-#: actions/profilesettings.php:144
-msgid "Automatically subscribe to whoever "
-msgstr ""
-
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
-#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr ""
-
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
-#: actions/profilesettings.php:336
-#, fuzzy
-msgid "Couldn't save tags."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
-#: actions/public.php:129
-#, php-format
-msgid "Public timeline, page %d"
-msgstr ""
-
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr ""
-
-#: actions/public.php:220
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-msgstr ""
-
-#: actions/publictagcloud.php:57
-msgid "Public tag cloud"
-msgstr ""
-
-#: actions/publictagcloud.php:63
-#, php-format
-msgid "These are most popular recent tags on %s "
-msgstr ""
-
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
-msgid "Tag cloud"
-msgstr ""
-
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
-msgid "Sorry, only invited people can register."
-msgstr ""
-
-#: actions/register.php:149
-msgid "You can't register if you don't "
-msgstr ""
-
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr ""
-
-#: actions/register.php:368
-msgid "1-64 lowercase letters or numbers, "
-msgstr ""
-
-#: actions/register.php:382 actions/register.php:386
-msgid "Used only for updates, announcements, "
-msgstr ""
-
-#: actions/register.php:398
-msgid "URL of your homepage, blog, "
-msgstr ""
-
-#: actions/register.php:404
-msgid "Describe yourself and your "
-msgstr ""
-
-#: actions/register.php:410
-msgid "Where you are, like \"City, "
-msgstr ""
-
-#: actions/register.php:432
-msgid " except this private data: password, "
-msgstr ""
-
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr ""
-
-#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr ""
-
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
#: actions/replies.php:127
#, php-format
msgid "Replies to %s, page %d"
msgstr ""
-#: actions/showfavorites.php:79
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/replies.php:158
+#, fuzzy, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/replies.php:198
#, php-format
-msgid "%s favorite notices, page %d"
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
msgstr ""
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/repliesrss.php:72
+#, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr ""
+
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
+msgstr "%s και οι φίλοι του/της"
+
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr ""
+
+#: actions/showfavorites.php:170
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/showfavorites.php:177
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/showfavorites.php:184
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
#, php-format
msgid "%s group"
msgstr ""
-#: actions/showgroup.php:79 actions/showgroup.php:84
+#: actions/showgroup.php:84
#, php-format
msgid "%s group, page %d"
msgstr ""
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
+#: actions/showgroup.php:218
#, fuzzy
msgid "Group profile"
msgstr "Αδύνατη η αποθήκευση του προφίλ."
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
msgid "URL"
msgstr ""
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
msgid "Note"
msgstr ""
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
msgid "Group actions"
msgstr ""
-#: actions/showgroup.php:323 actions/showgroup.php:304
+#: actions/showgroup.php:328
#, php-format
-msgid "Notice feed for %s group"
+msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
+#: actions/showgroup.php:334
+#, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr ""
+
+#: actions/showgroup.php:340
+#, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr ""
+
+#: actions/showgroup.php:345
+#, fuzzy, php-format
+msgid "FOAF for %s group"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
#, fuzzy
msgid "Members"
msgstr "Μέλος από"
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
msgid "(None)"
msgstr ""
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
+#: actions/showgroup.php:392
msgid "All members"
msgstr ""
-#: actions/showgroup.php:378
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr ""
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Δημιουργία"
+
+#: actions/showgroup.php:448
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showgroup.php:454
+#, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
+msgstr ""
+
+#: actions/showgroup.php:482
+#, fuzzy
+msgid "Admins"
+msgstr "Διαχειριστής"
+
+#: actions/showmessage.php:81
+msgid "No such message."
msgstr ""
#: actions/showmessage.php:98
-msgid "Only the sender and recipient "
+msgid "Only the sender and recipient may read this message."
+msgstr ""
+
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr ""
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr ""
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Ρυθμίσεις OpenID"
+
+#: actions/showstream.php:73
+#, php-format
+msgid " tagged %s"
msgstr ""
-#: actions/showstream.php:73 actions/showstream.php:78
#: actions/showstream.php:79
#, php-format
msgid "%s, page %d"
msgstr ""
+#: actions/showstream.php:122
+#, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr ""
+
+#: actions/showstream.php:129
+#, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr ""
+
+#: actions/showstream.php:136
+#, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr ""
+
#: actions/showstream.php:143
-#, fuzzy
-msgid "'s profile"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-#, fuzzy
-msgid "User profile"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
+#, php-format
+msgid "Notice feed for %s (Atom)"
msgstr ""
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
+#: actions/showstream.php:148
+#, php-format
+msgid "FOAF for %s"
msgstr ""
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
msgstr ""
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
msgstr ""
-#: actions/showstream.php:451 lib/profileaction.php:157
-msgid "All subscribers"
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
msgstr ""
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr ""
-
-#: actions/showstream.php:542
+#: actions/showstream.php:234
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/smssettings.php:128
-msgid "Phone number, no punctuation or spaces, "
+#: actions/showstream.php:239
+#, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
msgstr ""
-#: actions/smssettings.php:162
-msgid "Send me notices through SMS; "
+#: actions/smssettings.php:58
+msgid "SMS Settings"
msgstr ""
-#: actions/smssettings.php:335
-msgid "A confirmation code was sent to the phone number you added. "
+#: actions/smssettings.php:69
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:91
+#, fuzzy
+msgid "SMS is not available."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου."
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
+msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
+
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr ""
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr ""
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr ""
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr ""
+
+#: actions/smssettings.php:174
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr ""
+
+#: actions/smssettings.php:311
+msgid "No carrier selected."
+msgstr ""
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr ""
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr ""
+
+#: actions/smssettings.php:347
+#, fuzzy
+msgid ""
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
+msgstr ""
+"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που "
+"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
+"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
+
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr ""
+
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr ""
+
+#: actions/smssettings.php:465
msgid "Mobile carrier"
msgstr ""
+#: actions/smssettings.php:469
+msgid "Select a carrier"
+msgstr ""
+
+#: actions/smssettings.php:476
+#, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr ""
+
#: actions/subedit.php:70
msgid "You are not subscribed to that profile."
msgstr ""
@@ -4897,1681 +2882,12 @@ msgid "%s subscribers, page %d"
msgstr ""
#: actions/subscribers.php:63
-msgid "These are the people who listen to "
+msgid "These are the people who listen to your notices."
msgstr ""
#: actions/subscribers.php:67
#, php-format
-msgid "These are the people who "
-msgstr ""
-
-#: actions/subscriptions.php:52
-#, fuzzy, php-format
-msgid "%s subscriptions"
-msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
-
-#: actions/subscriptions.php:54
-#, php-format
-msgid "%s subscriptions, page %d"
-msgstr ""
-
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices "
-msgstr ""
-
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose "
-msgstr ""
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-msgid "Jabber"
-msgstr ""
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr ""
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr ""
-
-#: actions/tagother.php:33
-msgid "Not logged in"
-msgstr ""
-
-#: actions/tagother.php:39
-msgid "No id argument."
-msgstr ""
-
-#: actions/tagother.php:65
-#, php-format
-msgid "Tag %s"
-msgstr ""
-
-#: actions/tagother.php:141
-msgid "Tag user"
-msgstr ""
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr ""
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-
-#: actions/tagother.php:198 actions/tagother.php:200
-#, fuzzy
-msgid "Could not save tags."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr ""
-
-#: actions/tagrss.php:35
-msgid "No such tag."
-msgstr ""
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, php-format
-msgid "Microblog tagged with %s"
-msgstr ""
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr ""
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr ""
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-msgid "Not found."
-msgstr ""
-
-#: actions/twittersettings.php:71
-msgid "Add your Twitter account to automatically send "
-msgstr ""
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr "Όνομα χρήστη στο Twitter"
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-msgid "Twitter password"
-msgstr "Κωδικός στο Twitter"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr "Φίλοι στο Twitter"
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νούμερα,"
-
-#: actions/twittersettings.php:341
-#, php-format
-msgid "Unable to retrieve account information "
-msgstr ""
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-msgid "Error removing the block."
-msgstr ""
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-msgid "No profile id in request."
-msgstr ""
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-msgid "No profile with that id."
-msgstr ""
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-msgid "Unsubscribed"
-msgstr ""
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr ""
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr ""
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-msgid "Problem saving notice. Unknown user."
-msgstr ""
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr ""
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-msgid "Upload an avatar"
-msgstr ""
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr ""
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr ""
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, php-format
-msgid "%s - %s"
-msgstr ""
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr ""
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr ""
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr ""
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr ""
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-#, fuzzy
-msgid "Account"
-msgstr "Περί"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr ""
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr ""
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr ""
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr ""
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-#, fuzzy
-msgid "Create an account"
-msgstr "Δημιουργία νέου λογαριασμού"
-
-#: lib/action.php:341 lib/action.php:418
-msgid "Login with OpenID"
-msgstr ""
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-#, fuzzy
-msgid "Help me!"
-msgstr "Βοήθεια"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-msgid "Site notice"
-msgstr ""
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr ""
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-msgid "Page notice"
-msgstr ""
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-msgid "Secondary site navigation"
-msgstr ""
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr ""
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-msgid "All "
-msgstr ""
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-msgid "license."
-msgstr ""
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block this user"
-msgstr ""
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr ""
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-msgid "Disfavor this notice"
-msgstr ""
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-#, fuzzy
-msgid " a new account."
-msgstr "Δημιουργία νέου λογαριασμού"
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-msgid "Published"
-msgstr ""
-
-#: lib/favorform.php:114 lib/favorform.php:140
-msgid "Favor this notice"
-msgstr ""
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr ""
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr ""
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr ""
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr ""
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-msgid "Choose a tag to narrow list"
-msgstr ""
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-msgid "Go"
-msgstr ""
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-msgid "URL of the homepage or blog of the group or topic"
-msgstr ""
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-msgid "Describe the group or topic in 140 chars"
-msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)"
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr "Ομάδα"
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-msgid "Admin"
-msgstr "Διαχειριστής"
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, php-format
-msgid "Edit %s group properties"
-msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s"
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-msgid "Logo"
-msgstr "Λογότυπο"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, php-format
-msgid "Add or edit %s logo"
-msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s"
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr "Ομάδες με τα περισσότερα μέλη"
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις"
-
-#: lib/grouptagcloudsection.php:56
-#, php-format
-msgid "Tags in %s group's notices"
-msgstr ""
-
-#: lib/htmloutputter.php:104
-#, fuzzy
-msgid "This page is not available in a "
-msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-
-#: lib/joinform.php:114
-#, fuzzy
-msgid "Join"
-msgstr "Συμμετοχή"
-
-#: lib/leaveform.php:114
-msgid "Leave"
-msgstr "Αποχώρηση"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-msgid "Login with a username and password"
-msgstr "Σύνδεση με όνομα χρήστη και κωδικό"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-#, fuzzy
-msgid "Sign up for a new account"
-msgstr "Δημιουργία νέου λογαριασμού"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr "Σύνδεση ή δημιουργία λογαριασμού με OpenID"
-
-#: lib/mail.php:175
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-"Γεια σου, %s.\n"
-"\n"
-
-#: lib/mail.php:236
-#, php-format
-msgid "%1$s is now listening to "
-msgstr ""
-
-#: lib/mail.php:254 lib/mail.php:253
-#, fuzzy, php-format
-msgid "Location: %s\n"
-msgstr "Τοποθεσία: %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, fuzzy, php-format
-msgid "Homepage: %s\n"
-msgstr "Αρχική σελίδα: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-"Βιογραφικό: %s\n"
-"\n"
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
-
-#: lib/mail.php:465
-#, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr ""
-
-#: lib/mail.php:555
-#, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr ""
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-msgid "From"
-msgstr "Από"
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-msgid "Send a direct notice"
-msgstr ""
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-msgid "Send a notice"
-msgstr ""
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-#, fuzzy
-msgid "Available characters"
-msgstr "6 ή περισσότεροι χαρακτήρες"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-msgid "in reply to"
-msgstr ""
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-msgid "Reply to this notice"
-msgstr ""
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-msgid "Reply"
-msgstr ""
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-msgid "Delete this notice"
-msgstr ""
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-msgid "Delete"
-msgstr ""
-
-#: lib/nudgeform.php:116
-msgid "Nudge this user"
-msgstr ""
-
-#: lib/nudgeform.php:128
-msgid "Nudge"
-msgstr ""
-
-#: lib/nudgeform.php:128
-msgid "Send a nudge to this user"
-msgstr ""
-
-#: lib/personaltagcloudsection.php:56
-#, php-format
-msgid "Tags in %s's notices"
-msgstr ""
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-#, fuzzy
-msgid "(none)"
-msgstr "(κανένα)"
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Δημόσια"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr "Ομάδες χρηστών"
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr "Πρόσφατες ετικέτες "
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr "Προτεινόμενα"
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-msgid "Popular"
-msgstr "Δημοφιλή"
-
-#: lib/searchgroupnav.php:82
-msgid "Notice"
-msgstr "Μήνυμα"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr "Βρες ομάδες στο site"
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr "Ενότητα χωρίς τίτλο"
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, php-format
-msgid "People %s subscribes to"
-msgstr ""
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, php-format
-msgid "People subscribed to %s"
-msgstr ""
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, php-format
-msgid "Groups %s is a member of"
-msgstr ""
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
-
-#: lib/subs.php:53 lib/subs.php:52
-msgid "User has blocked you."
-msgstr ""
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-msgid "Subscribe to this user"
-msgstr "Γίνε συνδρομητής αυτού του χρήστη"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr "Κανένα"
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr "Κορυφαίοι δημοσιευτές"
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-msgid "Unblock this user"
-msgstr ""
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr ""
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr ""
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s και οι φίλοι του/της"
-
-#: actions/avatarsettings.php:78
-#, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr ""
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Ρυθμίσεις OpenID"
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr ""
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr ""
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-msgid "Pick a square area of the image to be the logo."
-msgstr ""
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, php-format
-msgid "Microblog by %s group"
-msgstr ""
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-msgid "Only logged-in users can send direct messages."
-msgstr ""
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr "Αναζήτηση ροής για \"%s\""
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr ""
-"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό "
-"σας, πριν αλλάξετε τις ρυθμίσεις σας."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr ""
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr ""
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Δημόσια ροή %s"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr ""
-"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, "
-"διεύθυνση IM, τηλεφωνικό νούμερο."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Δημιουργία"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr ""
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr ""
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr ""
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, php-format
-msgid "FOAF for %s"
-msgstr ""
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-msgid "Edit Avatar"
-msgstr ""
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr ""
-"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που "
-"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
-"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/twittersettings.php:72
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr ""
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-msgid "Search for more groups"
-msgstr ""
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-
-#: lib/action.php:406 lib/action.php:425
-msgid "Connect to SMS, Twitter"
-msgstr ""
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-msgid "Badge"
-msgstr ""
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr ""
-"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για "
-"να τον συνδέσετε στο OpenID σας."
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-msgid "Search site"
-msgstr ""
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-msgid "No such attachment."
-msgstr ""
-
-#: actions/block.php:149
-msgid "Do not block this user from this group"
-msgstr ""
-
-#: actions/block.php:150
-msgid "Block this user from this group"
-msgstr ""
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s και οι φίλοι του/της"
-
-#: actions/blockedfromgroup.php:108
-msgid "A list of the users blocked from joining this group."
-msgstr ""
-
-#: actions/blockedfromgroup.php:281
-msgid "Unblock user from group"
-msgstr ""
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Τοποθεσία"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, php-format
-msgid "Invalid alias: \"%s\""
-msgstr ""
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "Μήνυμα"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "Μήνυμα"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-msgid "Not a valid invitation code."
-msgstr ""
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-msgid "No group specified."
-msgstr ""
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-msgid "User is already blocked from group."
-msgstr ""
-
-#: actions/groupblock.php:100
-msgid "User is not a member of group."
-msgstr ""
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-msgid "Block user from group"
-msgstr ""
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-msgid "You must be logged in to edit a group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-msgid "Group design"
-msgstr ""
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Απέτυχε η ενημέρωση του χρήστη."
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-msgid "Unable to save your design settings!"
-msgstr ""
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-msgid "Make user an admin of the group"
-msgstr ""
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-#, fuzzy
-msgid "Make Admin"
-msgstr "Διαχειριστής"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-msgid "No results."
-msgstr ""
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-msgid "User is not blocked from group."
-msgstr ""
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-msgid "Message sent"
-msgstr ""
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "Απέτυχε η αποθήκευση του προφίλ."
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-msgid "View profile designs"
-msgstr ""
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί "
-"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας."
-
-#: actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr ""
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Ο κωδικός αποθηκεύτηκε."
-
-#: actions/register.php:86 actions/register.php:92
-msgid "Sorry, invalid invitation code."
-msgstr ""
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Γίνε συνδρομητής αυτού του χρήστη"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "%s και οι φίλοι του/της"
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr ""
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr ""
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr ""
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-#, fuzzy
-msgid "Admins"
-msgstr "Διαχειριστής"
-
-#: actions/shownotice.php:101
-msgid "Not a local notice"
-msgstr ""
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, php-format
-msgid " tagged %s"
-msgstr ""
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr ""
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
+msgid "These are the people who listen to %s's notices."
msgstr ""
#: actions/subscribers.php:108
@@ -6592,7 +2908,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, fuzzy, php-format
+msgid "%s subscriptions"
+msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
+
+#: actions/subscriptions.php:54
+#, php-format
+msgid "%s subscriptions, page %d"
+msgstr ""
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr ""
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr ""
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6602,69 +2937,208 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, php-format
msgid "%s is not listening to anyone."
msgstr ""
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+msgid "Jabber"
+msgstr ""
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr ""
+
+#: actions/tagother.php:33
+msgid "Not logged in"
+msgstr ""
+
+#: actions/tagother.php:39
+msgid "No id argument."
+msgstr ""
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr ""
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+#, fuzzy
+msgid "User profile"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr ""
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr ""
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+
+#: actions/tagother.php:200
+#, fuzzy
+msgid "Could not save tags."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr ""
+
+#: actions/tag.php:68
+#, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr ""
+
+#: actions/tag.php:86
#, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr ""
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s"
+
+#: actions/tag.php:98
#, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr ""
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
-msgid "This status is already a favorite!"
+#: actions/tagrss.php:35
+msgid "No such tag."
msgstr ""
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
-msgid "That status is not a favorite!"
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
+msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή."
+
+#: actions/unsubscribe.php:77
+msgid "No profile id in request."
msgstr ""
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
-#, fuzzy
-msgid "Could not determine source user."
-msgstr "Απέτυχε η ενημέρωση του χρήστη."
-
-#: actions/twitapifriendships.php:215
-msgid "Target user not specified."
+#: actions/unsubscribe.php:84
+msgid "No profile with that id."
msgstr ""
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
-#, fuzzy
-msgid "Could not find target user."
-msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης."
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr ""
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
#, php-format
-msgid "%1$s / Updates mentioning %2$s"
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, php-format
-msgid "Updates tagged with %1$s on %2$s!"
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Εξουσιοδοτημένη συνδρομή"
+
+#: actions/userauthorization.php:110
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
msgstr ""
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
-msgstr ""
-
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:188
msgid "License"
msgstr ""
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Αποδοχή"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr ""
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr ""
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr ""
+
+#: actions/userauthorization.php:249
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr ""
+
+#: actions/userauthorization.php:261
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr ""
+
+#: actions/userauthorization.php:348
+#, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr ""
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr ""
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
msgid "Profile design"
msgstr ""
@@ -6679,6 +3153,15 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr ""
+
+#: actions/usergroups.php:130
+msgid "Search for more groups"
+msgstr ""
+
#: actions/usergroups.php:153
#, php-format
msgid "%s is not a member of any group."
@@ -6689,47 +3172,291 @@ msgstr ""
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr ""
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr ""
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
+
+#: classes/Notice.php:179
msgid "Problem saving notice. Too long."
msgstr ""
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+msgid "Problem saving notice. Unknown user."
+msgstr ""
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+
+#: classes/Notice.php:194
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr ""
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr ""
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
+
#: classes/User.php:333
#, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr ""
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr ""
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας"
+
+#: lib/accountsettingsaction.php:112
+msgid "Upload an avatar"
+msgstr ""
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr "Αλλάξτε τον κωδικό σας"
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr ""
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "Αδύνατη η αποθήκευση του προφίλ."
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr ""
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr ""
+
+#: lib/action.php:144
+#, php-format
+msgid "%s - %s"
+msgstr ""
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr ""
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr ""
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Αρχή"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr ""
+
+#: lib/action.php:432
+#, fuzzy
+msgid "Account"
+msgstr "Περί"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr ""
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Σύνδεση"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr ""
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Αποσύνδεση"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr ""
+
+#: lib/action.php:450
+#, fuzzy
+msgid "Create an account"
+msgstr "Δημιουργία νέου λογαριασμού"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr ""
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Βοήθεια"
+
+#: lib/action.php:456
+#, fuzzy
+msgid "Help me!"
+msgstr "Βοήθεια"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr ""
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr ""
+
+#: lib/action.php:480
+msgid "Site notice"
+msgstr ""
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr ""
+
+#: lib/action.php:612
+msgid "Page notice"
+msgstr ""
+
+#: lib/action.php:714
+msgid "Secondary site navigation"
+msgstr ""
+
+#: lib/action.php:721
+msgid "About"
+msgstr "Περί"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "Συχνές ερωτήσεις"
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr ""
+
+#: lib/action.php:732
+msgid "Source"
+msgstr ""
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Επικοινωνία"
+
+#: lib/action.php:736
+msgid "Badge"
+msgstr ""
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr ""
+
+#: lib/action.php:767
+#, fuzzy, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που "
+"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). "
+
+#: lib/action.php:769
+#, fuzzy, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr ""
+"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). "
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+
+#: lib/action.php:785
+msgid "Site content license"
+msgstr ""
+
+#: lib/action.php:794
+msgid "All "
+msgstr ""
+
+#: lib/action.php:799
+msgid "license."
+msgstr ""
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr ""
+
+#: lib/action.php:1062
+msgid "After"
+msgstr ""
+
+#: lib/action.php:1070
+msgid "Before"
+msgstr ""
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr ""
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6750,6 +3477,221 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr ""
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr ""
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr ""
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr ""
+
+#: lib/command.php:88
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, php-format
+msgid "Nudge sent to %s"
+msgstr ""
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr ""
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr ""
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr ""
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr ""
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr ""
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr ""
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr ""
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr ""
+
+#: lib/command.php:431
+#, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr ""
+
+#: lib/command.php:439
+#, php-format
+msgid "Reply to %s sent"
+msgstr ""
+
+#: lib/command.php:441
+msgid "Error saving notice."
+msgstr ""
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr ""
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr ""
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr ""
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr ""
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr ""
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr ""
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr ""
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr ""
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr ""
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s "
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+msgid "Go to the installer."
+msgstr ""
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr "ΙΜ"
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr ""
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr ""
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -6798,6 +3740,10 @@ msgstr "Σύνδεση"
msgid "Sidebar"
msgstr ""
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr ""
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -6819,547 +3765,74 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
+msgid "Disfavor this notice"
msgstr ""
-#: lib/groupnav.php:100
-msgid "Blocked"
+#: lib/favorform.php:114 lib/favorform.php:140
+msgid "Favor this notice"
msgstr ""
-#: lib/groupnav.php:101
-#, php-format
-msgid "%s blocked users"
+#: lib/favorform.php:140
+msgid "Favor"
msgstr ""
-#: lib/groupnav.php:119
-#, fuzzy, php-format
-msgid "Add or edit %s design"
-msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s"
-
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
+#: lib/feedlist.php:64
+msgid "Export data"
msgstr ""
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
+#: lib/feed.php:85
+msgid "RSS 1.0"
msgstr ""
-#: lib/mail.php:648
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
+#: lib/feed.php:87
+msgid "RSS 2.0"
msgstr ""
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
+#: lib/feed.php:89
+msgid "Atom"
msgstr ""
-#: lib/mail.php:685
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
+#: lib/feed.php:91
+msgid "FOAF"
msgstr ""
-#: lib/mailbox.php:139
-msgid ""
-"You have no private messages. You can send private message to engage other "
-"users in conversation. People can send you messages for your eyes only."
+#: lib/galleryaction.php:121
+msgid "Filter tags"
msgstr ""
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
-msgid "in context"
-msgstr ""
-
-#: lib/profileaction.php:177
-msgid "User ID"
-msgstr ""
-
-#: lib/searchaction.php:156 lib/searchaction.php:162
-msgid "Search help"
-msgstr ""
-
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
-msgstr ""
-
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
-msgstr ""
-
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
-msgstr ""
-
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/apidirectmessage.php:89
-#, php-format
-msgid "Direct messages from %s"
-msgstr ""
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε."
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
-msgstr ""
-
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
-
-#: actions/apigroupjoin.php:110
-msgid "You are already a member of that group."
-msgstr ""
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
-
-#: actions/apigroupleave.php:114
-msgid "You are not a member of this group."
-msgstr ""
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "Ομάδες χρηστών"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "Ομάδες με τα περισσότερα μέλη"
-
-#: actions/apigrouplistall.php:94
-#, fuzzy, php-format
-msgid "groups on %s"
-msgstr "Βρες ομάδες στο site"
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Ρυθμίσεις OpenID"
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr ""
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-msgid "Unsupported format."
-msgstr ""
-
-#: actions/bookmarklet.php:50
-msgid "Post to "
-msgstr ""
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
-
-#: actions/favoritesrss.php:115
-#, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr ""
-
-#: actions/finishremotesubscribe.php:80
-msgid "User being listened to does not exist."
-msgstr ""
-
-#: actions/finishremotesubscribe.php:106
-msgid "You are not authorized."
-msgstr ""
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
-
-#: actions/finishremotesubscribe.php:114
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr ""
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/grouprss.php:133
-#, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr ""
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη "
-"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή "
-"δοκιμάστε το [OpenID](%%action.openidlogin%%). "
-
-#: actions/noticesearchrss.php:89
-#, php-format
-msgid "Updates with \"%s\""
-msgstr ""
-
-#: actions/noticesearchrss.php:91
-#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\""
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Σύνδεση"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr ""
-
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr ""
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/replies.php:158
-#, fuzzy, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr ""
-
-#: actions/showfavorites.php:170
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/showfavorites.php:177
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/showfavorites.php:184
-#, fuzzy, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/showfavorites.php:211
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
-msgstr ""
-
-#: actions/showgroup.php:345
-#, fuzzy, php-format
-msgid "FOAF for %s group"
-msgstr "Αδύνατη η αποθήκευση του προφίλ."
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Ρυθμίσεις OpenID"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Ροή φίλων του/της %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
-#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:110
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
-msgstr ""
-
-#: actions/userauthorization.php:249
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-
-#: actions/userauthorization.php:261
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-
-#: actions/userauthorization.php:296
-#, php-format
-msgid "Listener URI ‘%s’ not found here"
-msgstr ""
-
-#: actions/userauthorization.php:301
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:307
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:322
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:338
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:343
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:348
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr ""
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
-
-#: lib/action.php:785
-msgid "Site content license"
-msgstr ""
-
-#: lib/command.php:88
-#, fuzzy, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, php-format
-msgid "Nudge sent to %s"
-msgstr ""
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr ""
-
-#: lib/command.php:431
-#, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr ""
-
-#: lib/command.php:439
-#, php-format
-msgid "Reply to %s sent"
-msgstr ""
-
-#: lib/command.php:441
-msgid "Error saving notice."
-msgstr ""
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-msgid "Go to the installer."
+#: lib/galleryaction.php:131
+msgid "All"
msgstr ""
#: lib/galleryaction.php:139
msgid "Select tag to filter"
msgstr ""
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr ""
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr ""
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr ""
+
+#: lib/groupeditform.php:163
+msgid "URL of the homepage or blog of the group or topic"
+msgstr ""
+
#: lib/groupeditform.php:168
#, fuzzy
msgid "Describe the group or topic"
@@ -7370,11 +3843,269 @@ msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140
msgid "Describe the group or topic in %d characters"
msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες"
+#: lib/groupeditform.php:172
+msgid "Description"
+msgstr "Περιγραφή"
+
+#: lib/groupeditform.php:179
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)"
+
+#: lib/groupeditform.php:187
+#, php-format
+msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+msgstr ""
+
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr "Ομάδα"
+
+#: lib/groupnav.php:100
+msgid "Blocked"
+msgstr ""
+
+#: lib/groupnav.php:101
+#, php-format
+msgid "%s blocked users"
+msgstr ""
+
+#: lib/groupnav.php:107
+#, php-format
+msgid "Edit %s group properties"
+msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s"
+
+#: lib/groupnav.php:112
+msgid "Logo"
+msgstr "Λογότυπο"
+
+#: lib/groupnav.php:113
+#, php-format
+msgid "Add or edit %s logo"
+msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s"
+
+#: lib/groupnav.php:119
+#, fuzzy, php-format
+msgid "Add or edit %s design"
+msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s"
+
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις"
+
+#: lib/grouptagcloudsection.php:56
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr ""
+
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr ""
+
+#: lib/imagefile.php:75
+#, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr ""
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr ""
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr ""
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr ""
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr ""
+
+#: lib/imagefile.php:118
+#, fuzzy
+msgid "Lost our file."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
+msgstr ""
+
#: lib/jabber.php:192
#, fuzzy, php-format
msgid "notice id: %s"
msgstr "Μήνυμα"
+#: lib/joinform.php:114
+#, fuzzy
+msgid "Join"
+msgstr "Συμμετοχή"
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "Αποχώρηση"
+
+#: lib/logingroupnav.php:80
+msgid "Login with a username and password"
+msgstr "Σύνδεση με όνομα χρήστη και κωδικό"
+
+#: lib/logingroupnav.php:86
+#, fuzzy
+msgid "Sign up for a new account"
+msgstr "Δημιουργία νέου λογαριασμού"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
+msgstr ""
+
+#: lib/mailbox.php:139
+msgid ""
+"You have no private messages. You can send private message to engage other "
+"users in conversation. People can send you messages for your eyes only."
+msgstr ""
+
+#: lib/mailbox.php:227 lib/noticelist.php:424
+#, fuzzy
+msgid "from"
+msgstr "από"
+
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#: lib/mail.php:174
+#, php-format
+msgid ""
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
+msgstr ""
+
+#: lib/mail.php:235
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr ""
+
+#: lib/mail.php:240
+#, php-format
+msgid ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
+msgstr ""
+
+#: lib/mail.php:253
+#, fuzzy, php-format
+msgid "Location: %s\n"
+msgstr "Τοποθεσία: %s\n"
+
+#: lib/mail.php:255
+#, fuzzy, php-format
+msgid "Homepage: %s\n"
+msgstr "Αρχική σελίδα: %s\n"
+
+#: lib/mail.php:257
+#, php-format
+msgid ""
+"Bio: %s\n"
+"\n"
+msgstr ""
+"Βιογραφικό: %s\n"
+"\n"
+
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr ""
+
+#: lib/mail.php:288
+#, php-format
+msgid ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+msgstr ""
+
+#: lib/mail.php:412
+#, php-format
+msgid "%s status"
+msgstr "Κατάσταση του/της %s"
+
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr ""
+
+#: lib/mail.php:462
+#, php-format
+msgid "You've been nudged by %s"
+msgstr ""
+
+#: lib/mail.php:466
+#, php-format
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
+msgstr ""
+
+#: lib/mail.php:509
+#, php-format
+msgid "New private message from %s"
+msgstr ""
+
+#: lib/mail.php:513
+#, php-format
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
+msgstr ""
+
#: lib/mail.php:554
#, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7421,76 +4152,416 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr "από"
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
#, fuzzy
msgid "Could not determine file's mime-type!"
msgstr "Απέτυχε η ενημέρωση του χρήστη."
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr ""
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr ""
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+#, fuzzy
+msgid "Available characters"
+msgstr "6 ή περισσότεροι χαρακτήρες"
+
+#: lib/noticeform.php:145
+msgid "Send a notice"
+msgstr ""
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr ""
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+msgid "in context"
+msgstr ""
+
+#: lib/noticelist.php:498
+msgid "Reply to this notice"
+msgstr ""
+
+#: lib/noticelist.php:499
+msgid "Reply"
+msgstr ""
+
+#: lib/nudgeform.php:116
+msgid "Nudge this user"
+msgstr ""
+
+#: lib/nudgeform.php:128
+msgid "Nudge"
+msgstr ""
+
+#: lib/nudgeform.php:128
+msgid "Send a nudge to this user"
+msgstr ""
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr ""
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr ""
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr ""
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Διαγραφή μηνύματος"
-#: actions/login.php:110 actions/login.php:120
-msgid "Invalid or expired token."
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
+
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Προσωπικά"
+
+#: lib/personalgroupnav.php:104
+msgid "Replies"
msgstr ""
-#: lib/command.php:597
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr ""
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr ""
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr ""
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr ""
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr ""
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr ""
+
+#: lib/personaltagcloudsection.php:56
+#, php-format
+msgid "Tags in %s's notices"
+msgstr ""
+
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr ""
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "Όλες οι συνδρομές"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr ""
+
+#: lib/profileaction.php:157
+msgid "All subscribers"
+msgstr ""
+
+#: lib/profileaction.php:177
+msgid "User ID"
+msgstr ""
+
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Μέλος από"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr ""
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Δημόσια"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr "Ομάδες χρηστών"
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Πρόσφατες ετικέτες "
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "Προτεινόμενα"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Δημοφιλή"
+
+#: lib/searchaction.php:120
+msgid "Search site"
+msgstr ""
+
+#: lib/searchaction.php:162
+msgid "Search help"
+msgstr ""
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr ""
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr ""
+
+#: lib/searchgroupnav.php:82
+msgid "Notice"
+msgstr "Μήνυμα"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr ""
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr "Βρες ομάδες στο site"
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr "Ενότητα χωρίς τίτλο"
+
+#: lib/section.php:106
+msgid "More..."
+msgstr ""
+
+#: lib/subgroupnav.php:83
+#, php-format
+msgid "People %s subscribes to"
+msgstr ""
+
+#: lib/subgroupnav.php:91
+#, php-format
+msgid "People subscribed to %s"
+msgstr ""
+
+#: lib/subgroupnav.php:99
+#, php-format
+msgid "Groups %s is a member of"
+msgstr ""
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+#, fuzzy
+msgid "(none)"
+msgstr "(κανένα)"
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+msgid "User has blocked you."
+msgstr ""
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr "Απέτυχε η συνδρομή."
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr ""
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "Απέτυχε η διαγραφή συνδρομής."
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr "Κανένα"
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Κορυφαίοι δημοσιευτές"
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr ""
+
+#: lib/userprofile.php:116
+msgid "Edit Avatar"
+msgstr ""
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr ""
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr ""
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr ""
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr ""
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr ""
+
+#: lib/util.php:848
+#, php-format
+msgid "about %d minutes ago"
+msgstr ""
+
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr ""
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr ""
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr ""
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr ""
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr ""
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr ""
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr ""
+
+#: lib/webcolor.php:82
#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s "
+msgid "%s is not a valid color!"
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-#: lib/command.php:602
+#: lib/webcolor.php:123
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgid "%s is not a valid color! Use 3 or 6 hex chars."
msgstr ""
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %s."
+#: scripts/maildaemon.php:48
+msgid "Could not parse message."
msgstr ""
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack - not yet implemented.\n"
-"track off - not yet implemented.\n"
-"untrack all - not yet implemented.\n"
-"tracks - not yet implemented.\n"
-"tracking - not yet implemented.\n"
+#: scripts/maildaemon.php:53
+msgid "Not a registered user."
+msgstr ""
+
+#: scripts/maildaemon.php:57
+msgid "Sorry, that is not your incoming email address."
+msgstr ""
+
+#: scripts/maildaemon.php:61
+msgid "Sorry, no incoming email allowed."
msgstr ""
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo
index ff0e83d814..dfe476cb9a 100644
Binary files a/locale/en_GB/LC_MESSAGES/statusnet.mo and b/locale/en_GB/LC_MESSAGES/statusnet.mo differ
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po
index b8e8c5680c..71bcfd906b 100644
--- a/locale/en_GB/LC_MESSAGES/statusnet.po
+++ b/locale/en_GB/LC_MESSAGES/statusnet.po
@@ -11,49 +11,1531 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-08 11:53+0000\n"
-"PO-Revision-Date: 2009-11-08 11:56:19+0000\n"
+"POT-Creation-Date: 2009-11-08 22:51+0000\n"
+"PO-Revision-Date: 2009-11-08 22:58:02+0000\n"
"Language-Team: British English\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.16alpha(r58760); Translate extension (2009-08-03)\n"
+"X-Generator: MediaWiki 1.16alpha(r58791); Translate extension (2009-08-03)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n"
"X-Message-Group: out-statusnet\n"
-#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
-#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
-#, php-format
-msgid " Search Stream for \"%s\""
-msgstr " Search Stream for \"%s\""
+#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
+#: actions/showfavorites.php:137 actions/tag.php:51
+#, fuzzy
+msgid "No such page"
+msgstr "No such tag."
-#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
-#: actions/finishopenidlogin.php:88 actions/register.php:205
-#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
+#: actions/all.php:74 actions/allrss.php:68
+#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
+#: actions/apiblockdestroy.php:96 actions/apidirectmessagenew.php:75
+#: actions/apidirectmessage.php:77 actions/apigroupcreate.php:112
+#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
+#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
+#: actions/apistatusesupdate.php:139 actions/apisubscriptions.php:87
+#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
+#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
+#: actions/avatarbynickname.php:75 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/microsummary.php:62
+#: actions/newmessage.php:116 actions/remotesubscribe.php:145
+#: actions/remotesubscribe.php:154 actions/replies.php:73
+#: actions/repliesrss.php:38 actions/showfavorites.php:105
+#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38
+#: actions/xrds.php:71 lib/command.php:163 lib/command.php:311
+#: lib/command.php:364 lib/command.php:411 lib/command.php:466
+#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/subs.php:34 lib/subs.php:112
+msgid "No such user."
+msgstr "No such user."
+
+#: actions/all.php:84
+#, php-format
+msgid "%s and friends, page %d"
+msgstr "%s and friends, page %d"
+
+#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
+#: actions/apitimelinefriends.php:114 lib/personalgroupnav.php:100
+#, php-format
+msgid "%s and friends"
+msgstr "%s and friends"
+
+#: actions/all.php:99
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Feed for friends of %s"
+
+#: actions/all.php:107
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Feed for friends of %s"
+
+#: actions/all.php:115
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Feed for friends of %s"
+
+#: actions/all.php:127
+#, php-format
msgid ""
-" except this private data: password, email address, IM address, phone number."
+"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-" except this private data: password, e-mail address, IM address, phone "
-"number."
-#: ../actions/showstream.php:400 ../lib/stream.php:109
-#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
-msgid " from "
-msgstr "from"
-
-#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
-#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
+#: actions/all.php:132
#, php-format
-msgid "%1$s / Updates replying to %2$s"
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#: actions/all.php:134
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) from his profile or [post something to his "
+"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to his or her attention."
+msgstr ""
+
+#: actions/all.php:165
+#, fuzzy
+msgid "You and friends"
+msgstr "%s and friends"
+
+#: actions/allrss.php:119 actions/apitimelinefriends.php:121
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "Updates from %1$s and friends on %2$s!"
+
+#: actions/apiaccountratelimitstatus.php:70 actions/apidirectmessage.php:156
+#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
+#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
+#: actions/apifriendshipsshow.php:129 actions/apigroupcreate.php:184
+#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
+#: actions/apigroupleave.php:141 actions/apigrouplistall.php:120
+#: actions/apigrouplist.php:132 actions/apigroupmembership.php:101
+#: actions/apigroupshow.php:105 actions/apihelptest.php:88
+#: actions/apistatusesdestroy.php:102 actions/apistatusesshow.php:108
+#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93
+#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:144
+#: actions/apitimelinefriends.php:154 actions/apitimelinegroup.php:141
+#: actions/apitimelinementions.php:149 actions/apitimelinepublic.php:130
+#: actions/apitimelinetag.php:139 actions/apitimelineuser.php:163
+#: actions/apiusershow.php:101
+msgid "API method not found!"
+msgstr "API method not found!"
+
+#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
+#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117
+#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
+#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
+#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
+#: actions/apigroupleave.php:91 actions/apistatusesupdate.php:109
+msgid "This method requires a POST."
+msgstr "This method requires a POST."
+
+#: actions/apiaccountupdateprofileimage.php:97
+#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
+#: actions/newnotice.php:94 lib/designsettings.php:283
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr ""
+
+#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/replies.php:80
+#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
+msgid "User has no profile."
+msgstr "User has no profile."
+
+#: actions/apiblockcreate.php:108
+msgid "Block user failed."
+msgstr "Block user failed."
+
+#: actions/apiblockdestroy.php:107
+msgid "Unblock user failed."
+msgstr "Unblock user failed."
+
+#: actions/apidirectmessagenew.php:126
+msgid "No message text!"
+msgstr "No message text!"
+
+#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
+#, fuzzy, php-format
+msgid "That's too long. Max message size is %d chars."
+msgstr "That's too long. Max message size is 140 chars."
+
+#: actions/apidirectmessagenew.php:146
+msgid "Recipient user not found."
+msgstr "Recipient user not found."
+
+#: actions/apidirectmessagenew.php:150
+msgid "Can't send direct messages to users who aren't your friend."
+msgstr "Can't send direct messages to users who aren't your friend."
+
+#: actions/apidirectmessage.php:89
+#, fuzzy, php-format
+msgid "Direct messages from %s"
+msgstr "Direct messages to %s"
+
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "All the direct messages sent from %s"
+
+#: actions/apidirectmessage.php:101
+#, php-format
+msgid "Direct messages to %s"
+msgstr "Direct messages to %s"
+
+#: actions/apidirectmessage.php:105
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "All the direct messages sent to %s"
+
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109
+#: actions/apistatusesdestroy.php:113
+msgid "No status found with that ID."
+msgstr "No status found with that ID."
+
+#: actions/apifavoritecreate.php:119
+#, fuzzy
+msgid "This status is already a favorite!"
+msgstr "This notice is already a favourite!"
+
+#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
+msgid "Could not create favorite."
+msgstr "Could not create favourite."
+
+#: actions/apifavoritedestroy.php:122
+#, fuzzy
+msgid "That status is not a favorite!"
+msgstr "This notice is not a favourite!"
+
+#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
+msgid "Could not delete favorite."
+msgstr "Could not delete favourite."
+
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: User not found."
+msgstr "Could not follow user: User not found."
+
+#: actions/apifriendshipscreate.php:118
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr "Could not follow user: %s is already on your list."
+
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "Could not follow user: User not found."
+
+#: actions/apifriendshipsdestroy.php:120
+msgid "You cannot unfollow yourself!"
+msgstr ""
+
+#: actions/apifriendshipsexists.php:94
+msgid "Two user ids or screen_names must be supplied."
+msgstr "Two user ids or screen_names must be supplied."
+
+#: actions/apifriendshipsshow.php:135
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Could not retrieve public stream."
+
+#: actions/apifriendshipsshow.php:143
+#, fuzzy
+msgid "Could not find target user."
+msgstr "Couldn't find any statuses."
+
+#: actions/apigroupcreate.php:136 actions/newgroup.php:204
+msgid "Could not create group."
+msgstr "Could not create group."
+
+#: actions/apigroupcreate.php:147 actions/editgroup.php:259
+#: actions/newgroup.php:210
+#, fuzzy
+msgid "Could not create aliases."
+msgstr "Could not create favourite."
+
+#: actions/apigroupcreate.php:166 actions/newgroup.php:224
+msgid "Could not set group membership."
+msgstr "Could not set group membership."
+
+#: actions/apigroupcreate.php:212 actions/editgroup.php:182
+#: actions/newgroup.php:126 actions/profilesettings.php:208
+#: actions/register.php:205
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
+
+#: actions/apigroupcreate.php:221 actions/editgroup.php:186
+#: actions/newgroup.php:130 actions/profilesettings.php:231
+#: actions/register.php:208
+msgid "Nickname already in use. Try another one."
+msgstr "Nickname already in use. Try another one."
+
+#: actions/apigroupcreate.php:228 actions/editgroup.php:189
+#: actions/newgroup.php:133 actions/profilesettings.php:211
+#: actions/register.php:210
+msgid "Not a valid nickname."
+msgstr "Not a valid nickname."
+
+#: actions/apigroupcreate.php:244 actions/editgroup.php:195
+#: actions/newgroup.php:139 actions/profilesettings.php:215
+#: actions/register.php:217
+msgid "Homepage is not a valid URL."
+msgstr "Homepage is not a valid URL."
+
+#: actions/apigroupcreate.php:253 actions/editgroup.php:198
+#: actions/newgroup.php:142 actions/profilesettings.php:218
+#: actions/register.php:220
+msgid "Full name is too long (max 255 chars)."
+msgstr "Full name is too long (max 255 chars)."
+
+#: actions/apigroupcreate.php:261
+#, fuzzy, php-format
+msgid "Description is too long (max %d chars)."
+msgstr "description is too long (max 140 chars)."
+
+#: actions/apigroupcreate.php:272 actions/editgroup.php:204
+#: actions/newgroup.php:148 actions/profilesettings.php:225
+#: actions/register.php:227
+msgid "Location is too long (max 255 chars)."
+msgstr "Location is too long (max 255 chars)."
+
+#: actions/apigroupcreate.php:291 actions/editgroup.php:215
+#: actions/newgroup.php:159
+#, php-format
+msgid "Too many aliases! Maximum %d."
+msgstr ""
+
+#: actions/apigroupcreate.php:312 actions/editgroup.php:224
+#: actions/newgroup.php:168
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "Invalid tag: \"%s\""
+
+#: actions/apigroupcreate.php:321 actions/editgroup.php:228
+#: actions/newgroup.php:172
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Nickname already in use. Try another one."
+
+#: actions/apigroupcreate.php:334 actions/editgroup.php:234
+#: actions/newgroup.php:178
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#: actions/apigroupjoin.php:110
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "You are already a member of that group"
+
+#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#: actions/apigroupjoin.php:138
+#, fuzzy, php-format
+msgid "Could not join user %s to group %s."
+msgstr "Could not join user %s to group %s"
+
+#: actions/apigroupleave.php:114
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "You are not a member of that group."
+
+#: actions/apigroupleave.php:124
+#, fuzzy, php-format
+msgid "Could not remove user %s to group %s."
+msgstr "Could not remove user %s to group %s"
+
+#: actions/apigrouplistall.php:90 actions/usergroups.php:62
+#, php-format
+msgid "%s groups"
+msgstr "%s groups"
+
+#: actions/apigrouplistall.php:94
+#, fuzzy, php-format
+msgid "groups on %s"
+msgstr "Group actions"
+
+#: actions/apigrouplist.php:95
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "%s groups"
+
+#: actions/apigrouplist.php:103
+#, fuzzy, php-format
+msgid "Groups %s is a member of on %s."
+msgstr "Groups %s is a member of"
+
+#: actions/apistatusesdestroy.php:107
+msgid "This method requires a POST or DELETE."
+msgstr "This method requires a POST or DELETE."
+
+#: actions/apistatusesdestroy.php:130
+msgid "You may not delete another user's status."
+msgstr "You may not delete another user's status."
+
+#: actions/apistatusesshow.php:138
+#, fuzzy
+msgid "Status deleted."
+msgstr "Avatar updated."
+
+#: actions/apistatusesshow.php:144
+msgid "No status with that ID found."
+msgstr "No status with that ID found."
+
+#: actions/apistatusesupdate.php:152 actions/newnotice.php:155
+#: scripts/maildaemon.php:71
+#, fuzzy, php-format
+msgid "That's too long. Max notice size is %d chars."
+msgstr "That's too long. Max notice size is 140 chars."
+
+#: actions/apistatusesupdate.php:193
+msgid "Not found"
+msgstr "Not found"
+
+#: actions/apistatusesupdate.php:216 actions/newnotice.php:178
+#, php-format
+msgid "Max notice size is %d chars, including attachment URL."
+msgstr ""
+
+#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
+#, fuzzy
+msgid "Unsupported format."
+msgstr "Unsupported image file format."
+
+#: actions/apitimelinefavorites.php:107
+#, php-format
+msgid "%s / Favorites from %s"
+msgstr "%s / Favourites from %s"
+
+#: actions/apitimelinefavorites.php:119
+#, php-format
+msgid "%s updates favorited by %s / %s."
+msgstr "%s updates favourited by %s / %s."
+
+#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
+#: actions/grouprss.php:131 actions/userrss.php:90
+#, php-format
+msgid "%s timeline"
+msgstr "%s timeline"
+
+#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
+#: actions/userrss.php:92
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr "Updates from %1$s on %2$s!"
+
+#: actions/apitimelinementions.php:116
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
msgstr "%1$s / Updates replying to %2$s"
-#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
-#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
+#: actions/apitimelinementions.php:126
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr "%1$s updates that reply to updates from %2$s / %3$s."
+
+#: actions/apitimelinepublic.php:106 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "%s public timeline"
+
+#: actions/apitimelinepublic.php:110 actions/publicrss.php:105
+#, php-format
+msgid "%s updates from everyone!"
+msgstr "%s updates from everyone!"
+
+#: actions/apitimelinetag.php:101 actions/tag.php:66
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "Notices tagged with %s"
+
+#: actions/apitimelinetag.php:107 actions/tagrss.php:64
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Updates from %1$s on %2$s!"
+
+#: actions/apiusershow.php:96
+msgid "Not found."
+msgstr "Not found."
+
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "No such document."
+
+#: actions/avatarbynickname.php:59 actions/leavegroup.php:76
+msgid "No nickname."
+msgstr "No nickname."
+
+#: actions/avatarbynickname.php:64
+msgid "No size."
+msgstr "No size."
+
+#: actions/avatarbynickname.php:69
+msgid "Invalid size."
+msgstr "Invalid size."
+
+#: actions/avatarsettings.php:67 actions/showgroup.php:221
+#: lib/accountsettingsaction.php:111
+msgid "Avatar"
+msgstr "Avatar"
+
+#: actions/avatarsettings.php:78
+#, fuzzy, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr "You can upload your personal avatar."
+
+#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
+#: actions/grouplogo.php:178 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:103
+msgid "User without matching profile"
+msgstr "User without matching profile"
+
+#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
+#: actions/grouplogo.php:251
+msgid "Avatar settings"
+msgstr "Avatar settings"
+
+#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
+#: actions/grouplogo.php:199 actions/grouplogo.php:259
+msgid "Original"
+msgstr "Original"
+
+#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
+#: actions/grouplogo.php:210 actions/grouplogo.php:271
+msgid "Preview"
+msgstr "Preview"
+
+#: actions/avatarsettings.php:148 lib/noticelist.php:522
+msgid "Delete"
+msgstr "Delete"
+
+#: actions/avatarsettings.php:165 actions/grouplogo.php:233
+msgid "Upload"
+msgstr "Upload"
+
+#: actions/avatarsettings.php:228 actions/grouplogo.php:286
+msgid "Crop"
+msgstr "Crop"
+
+#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74
+#: actions/emailsettings.php:237 actions/favor.php:75
+#: actions/groupblock.php:66 actions/grouplogo.php:309
+#: actions/groupunblock.php:66 actions/imsettings.php:206
+#: actions/invite.php:56 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
+#: actions/othersettings.php:145 actions/passwordsettings.php:137
+#: actions/profilesettings.php:187 actions/recoverpassword.php:337
+#: actions/register.php:165 actions/remotesubscribe.php:77
+#: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46
+#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69
+#: actions/userauthorization.php:52 lib/designsettings.php:294
+msgid "There was a problem with your session token. Try again, please."
+msgstr "There was a problem with your session token. Try again, please."
+
+#: actions/avatarsettings.php:277 actions/emailsettings.php:255
+#: actions/grouplogo.php:319 actions/imsettings.php:220
+#: actions/recoverpassword.php:44 actions/smssettings.php:248
+#: lib/designsettings.php:304
+msgid "Unexpected form submission."
+msgstr "Unexpected form submission."
+
+#: actions/avatarsettings.php:322
+msgid "Pick a square area of the image to be your avatar"
+msgstr "Pick a square area of the image to be your avatar"
+
+#: actions/avatarsettings.php:337 actions/grouplogo.php:377
+msgid "Lost our file data."
+msgstr "Lost our file data."
+
+#: actions/avatarsettings.php:360
+msgid "Avatar updated."
+msgstr "Avatar updated."
+
+#: actions/avatarsettings.php:363
+msgid "Failed updating avatar."
+msgstr "Failed updating avatar."
+
+#: actions/avatarsettings.php:387
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "Avatar updated."
+
+#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
+#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
+#: actions/groupmembers.php:76 actions/grouprss.php:91
+#: actions/joingroup.php:76 actions/showgroup.php:121
+msgid "No nickname"
+msgstr "No nickname"
+
+#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
+#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
+#: actions/grouplogo.php:99 actions/groupmembers.php:83
+#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
+msgid "No such group"
+msgstr "No such group"
+
+#: actions/blockedfromgroup.php:90
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "User profile"
+
+#: actions/blockedfromgroup.php:93
+#, fuzzy, php-format
+msgid "%s blocked profiles, page %d"
+msgstr "%s and friends, page %d"
+
+#: actions/blockedfromgroup.php:108
+#, fuzzy
+msgid "A list of the users blocked from joining this group."
+msgstr "A list of the users in this group."
+
+#: actions/blockedfromgroup.php:281
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "Unblock user failed."
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:150
+msgid "Unblock"
+msgstr "Unblock"
+
+#: actions/blockedfromgroup.php:313 lib/unblockform.php:120
+#: lib/unblockform.php:150
+msgid "Unblock this user"
+msgstr "Unblock this user"
+
+#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61
+#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61
+#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87
+#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31
+#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "Not logged in."
+
+#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70
+msgid "No profile specified."
+msgstr "No profile specified."
+
+#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76
+#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#: actions/unblock.php:75
+msgid "No profile with that ID."
+msgstr "No profile with that ID."
+
+#: actions/block.php:111 actions/block.php:134
+msgid "Block user"
+msgstr "Block user"
+
+#: actions/block.php:136
+msgid ""
+"Are you sure you want to block this user? Afterwards, they will be "
+"unsubscribed from you, unable to subscribe to you in the future, and you "
+"will not be notified of any @-replies from them."
+msgstr ""
+
+#: actions/block.php:149 actions/deletenotice.php:145
+#: actions/groupblock.php:176
+msgid "No"
+msgstr "No"
+
+#: actions/block.php:149
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "A list of the users in this group."
+
+#: actions/block.php:150 actions/deletenotice.php:146
+#: actions/groupblock.php:177
+msgid "Yes"
+msgstr "Yes"
+
+#: actions/block.php:150
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "A list of the users in this group."
+
+#: actions/block.php:165
+msgid "You have already blocked this user."
+msgstr "You have already blocked this user."
+
+#: actions/block.php:170
+msgid "Failed to save block information."
+msgstr "Failed to save block information."
+
+#: actions/bookmarklet.php:50
+#, fuzzy
+msgid "Post to "
+msgstr "Photo"
+
+#: actions/confirmaddress.php:75
+msgid "No confirmation code."
+msgstr "No confirmation code."
+
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "Confirmation code not found."
+
+#: actions/confirmaddress.php:85
+msgid "That confirmation code is not for you!"
+msgstr "That confirmation code is not for you!"
+
+#: actions/confirmaddress.php:90
+#, php-format
+msgid "Unrecognized address type %s"
+msgstr "Unrecognised address type %s"
+
+#: actions/confirmaddress.php:94
+msgid "That address has already been confirmed."
+msgstr "That address has already been confirmed."
+
+#: actions/confirmaddress.php:114 actions/emailsettings.php:295
+#: actions/emailsettings.php:426 actions/imsettings.php:258
+#: actions/imsettings.php:401 actions/othersettings.php:174
+#: actions/profilesettings.php:276 actions/smssettings.php:278
+#: actions/smssettings.php:420
+msgid "Couldn't update user."
+msgstr "Couldn't update user."
+
+#: actions/confirmaddress.php:126 actions/emailsettings.php:390
+#: actions/imsettings.php:363 actions/smssettings.php:382
+msgid "Couldn't delete email confirmation."
+msgstr "Couldn't delete e-mail confirmation."
+
+#: actions/confirmaddress.php:144
+msgid "Confirm Address"
+msgstr "Confirm Address"
+
+#: actions/confirmaddress.php:159
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "The address \"%s\" has been confirmed for your account."
+
+#: actions/conversation.php:99
+#, fuzzy
+msgid "Conversation"
+msgstr "Confirmation code"
+
+#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#: lib/profileaction.php:206
+msgid "Notices"
+msgstr "Notices"
+
+#: actions/deletenotice.php:52 actions/shownotice.php:92
+msgid "No such notice."
+msgstr "No such notice."
+
+#: actions/deletenotice.php:71
+msgid "Can't delete this notice."
+msgstr "Can't delete this notice."
+
+#: actions/deletenotice.php:103
+#, fuzzy
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+
+#: actions/deletenotice.php:109 actions/deletenotice.php:141
+msgid "Delete notice"
+msgstr "Delete notice"
+
+#: actions/deletenotice.php:144
+msgid "Are you sure you want to delete this notice?"
+msgstr "Are you sure you want to delete this notice?"
+
+#: actions/deletenotice.php:145
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "Can't delete this notice."
+
+#: actions/deletenotice.php:146 lib/noticelist.php:522
+msgid "Delete this notice"
+msgstr "Delete this notice"
+
+#: actions/deletenotice.php:157
+#, fuzzy
+msgid "There was a problem with your session token. Try again, please."
+msgstr "There was a problem with your session token. Try again, please."
+
+#: actions/disfavor.php:81
+msgid "This notice is not a favorite!"
+msgstr "This notice is not a favourite!"
+
+#: actions/disfavor.php:94
+msgid "Add to favorites"
+msgstr "Add to favourites"
+
+#: actions/doc.php:69
+msgid "No such document."
+msgstr "No such document."
+
+#: actions/editgroup.php:56
+#, php-format
+msgid "Edit %s group"
+msgstr "Edit %s group"
+
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr "You must be logged in to create a group."
+
+#: actions/editgroup.php:103 actions/editgroup.php:168
+#: actions/groupdesignsettings.php:104 actions/grouplogo.php:106
+msgid "You must be an admin to edit the group"
+msgstr "You must be an admin to edit the group"
+
+#: actions/editgroup.php:154
+msgid "Use this form to edit the group."
+msgstr "Use this form to edit the group."
+
+#: actions/editgroup.php:201 actions/newgroup.php:145
+#, fuzzy, php-format
+msgid "description is too long (max %d chars)."
+msgstr "description is too long (max 140 chars)."
+
+#: actions/editgroup.php:253
+msgid "Could not update group."
+msgstr "Could not update group."
+
+#: actions/editgroup.php:269
+msgid "Options saved."
+msgstr "Options saved."
+
+#: actions/emailsettings.php:60
+msgid "Email Settings"
+msgstr "E-mail Settings"
+
+#: actions/emailsettings.php:71
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "Manage how you get e-mail from %%site.name%%."
+
+#: actions/emailsettings.php:100 actions/imsettings.php:100
+#: actions/smssettings.php:104
+msgid "Address"
+msgstr "Address"
+
+#: actions/emailsettings.php:105
+msgid "Current confirmed email address."
+msgstr "Current confirmed e-mail address."
+
+#: actions/emailsettings.php:107 actions/emailsettings.php:140
+#: actions/imsettings.php:108 actions/smssettings.php:115
+#: actions/smssettings.php:158
+msgid "Remove"
+msgstr "Remove"
+
+#: actions/emailsettings.php:113
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+
+#: actions/emailsettings.php:117 actions/imsettings.php:120
+#: actions/smssettings.php:126
+msgid "Cancel"
+msgstr "Cancel"
+
+#: actions/emailsettings.php:121
+msgid "Email Address"
+msgstr "E-mail Address"
+
+#: actions/emailsettings.php:123
+msgid "Email address, like \"UserName@example.org\""
+msgstr "E-mail address, like \"UserName@example.org\""
+
+#: actions/emailsettings.php:126 actions/imsettings.php:133
+#: actions/smssettings.php:145
+msgid "Add"
+msgstr "Add"
+
+#: actions/emailsettings.php:133 actions/smssettings.php:152
+msgid "Incoming email"
+msgstr "Incoming e-mail"
+
+#: actions/emailsettings.php:138 actions/smssettings.php:157
+msgid "Send email to this address to post new notices."
+msgstr "Send e-mail to this address to post new notices."
+
+#: actions/emailsettings.php:145 actions/smssettings.php:162
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr "Make a new e-mail address for posting to - cancels the old one."
+
+#: actions/emailsettings.php:148 actions/smssettings.php:164
+msgid "New"
+msgstr "New"
+
+#: actions/emailsettings.php:153 actions/imsettings.php:139
+#: actions/smssettings.php:169
+msgid "Preferences"
+msgstr "Preferences"
+
+#: actions/emailsettings.php:158
+msgid "Send me notices of new subscriptions through email."
+msgstr "Send me notices of new subscriptions through e-mail."
+
+#: actions/emailsettings.php:163
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr "Send me e-mail when someone adds my notice as a favourite."
+
+#: actions/emailsettings.php:169
+msgid "Send me email when someone sends me a private message."
+msgstr "Send me e-mail when someone sends me a private message."
+
+#: actions/emailsettings.php:174
+#, fuzzy
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr "Send me e-mail when someone sends me a private message."
+
+#: actions/emailsettings.php:179
+msgid "Allow friends to nudge me and send me an email."
+msgstr "Allow friends to nudge me and send me an e-mail."
+
+#: actions/emailsettings.php:185
+msgid "I want to post notices by email."
+msgstr "I want to post notices by e-mail."
+
+#: actions/emailsettings.php:191
+msgid "Publish a MicroID for my email address."
+msgstr "Publish a MicroID for my e-mail address."
+
+#: actions/emailsettings.php:195 actions/imsettings.php:163
+#: actions/othersettings.php:126 actions/profilesettings.php:167
+#: actions/smssettings.php:181 actions/subscriptions.php:203
+#: actions/tagother.php:154 lib/designsettings.php:256
+#: lib/groupeditform.php:202
+msgid "Save"
+msgstr "Save"
+
+#: actions/emailsettings.php:301 actions/imsettings.php:264
+#: actions/othersettings.php:180 actions/smssettings.php:284
+msgid "Preferences saved."
+msgstr "Preferences saved."
+
+#: actions/emailsettings.php:319
+msgid "No email address."
+msgstr "No e-mail address."
+
+#: actions/emailsettings.php:326
+msgid "Cannot normalize that email address"
+msgstr "Cannot normalise that e-mail address"
+
+#: actions/emailsettings.php:330
+msgid "Not a valid email address"
+msgstr "Not a valid e-mail address."
+
+#: actions/emailsettings.php:333
+msgid "That is already your email address."
+msgstr "That is already your e-mail address."
+
+#: actions/emailsettings.php:336
+msgid "That email address already belongs to another user."
+msgstr "That e-mail address already belongs to another user."
+
+#: actions/emailsettings.php:352 actions/imsettings.php:317
+#: actions/smssettings.php:337
+msgid "Couldn't insert confirmation code."
+msgstr "Couldn't insert confirmation code."
+
+#: actions/emailsettings.php:358
+msgid ""
+"A confirmation code was sent to the email address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+msgstr ""
+"A confirmation code was sent to the e-mail address you added. Check your "
+"inbox (and spam box!) for the code and instructions on how to use it."
+
+#: actions/emailsettings.php:378 actions/imsettings.php:351
+#: actions/smssettings.php:370
+msgid "No pending confirmation to cancel."
+msgstr "No pending confirmation to cancel."
+
+#: actions/emailsettings.php:382 actions/imsettings.php:355
+msgid "That is the wrong IM address."
+msgstr "That is the wrong IM address."
+
+#: actions/emailsettings.php:394 actions/imsettings.php:367
+#: actions/smssettings.php:386
+msgid "Confirmation cancelled."
+msgstr "Confirmation cancelled."
+
+#: actions/emailsettings.php:412
+msgid "That is not your email address."
+msgstr "That is not your e-mail address."
+
+#: actions/emailsettings.php:431 actions/imsettings.php:408
+#: actions/smssettings.php:425
+msgid "The address was removed."
+msgstr "The address was removed."
+
+#: actions/emailsettings.php:445 actions/smssettings.php:518
+msgid "No incoming email address."
+msgstr "No incoming e-mail address."
+
+#: actions/emailsettings.php:455 actions/emailsettings.php:477
+#: actions/smssettings.php:528 actions/smssettings.php:552
+msgid "Couldn't update user record."
+msgstr "Couldn't update user record."
+
+#: actions/emailsettings.php:458 actions/smssettings.php:531
+msgid "Incoming email address removed."
+msgstr "Incoming e-mail address removed."
+
+#: actions/emailsettings.php:480 actions/smssettings.php:555
+msgid "New incoming email address added."
+msgstr "New incoming e-mail address added."
+
+#: actions/favorited.php:65 lib/popularnoticesection.php:87
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "Popular notices"
+
+#: actions/favorited.php:67
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "Popular notices, page %d"
+
+#: actions/favorited.php:79
+msgid "The most popular notices on the site right now."
+msgstr "The most popular notices on the site right now."
+
+#: actions/favorited.php:150
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#: actions/favorited.php:153
+msgid ""
+"Be the first to add a notice to your favorites by clicking the fave button "
+"next to any notice you like."
+msgstr ""
+
+#: actions/favorited.php:156
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#: actions/favoritesrss.php:111 actions/showfavorites.php:77
+#: lib/personalgroupnav.php:115
+#, php-format
+msgid "%s's favorite notices"
+msgstr "%s's favourite notices"
+
+#: actions/favoritesrss.php:115
+#, fuzzy, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Updates from %1$s on %2$s!"
+
+#: actions/favor.php:79
+msgid "This notice is already a favorite!"
+msgstr "This notice is already a favourite!"
+
+#: actions/favor.php:92 lib/disfavorform.php:140
+msgid "Disfavor favorite"
+msgstr "Disfavor favourite"
+
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "Featured users"
+
+#: actions/featured.php:71
+#, php-format
+msgid "Featured users, page %d"
+msgstr "Featured users, page %d"
+
+#: actions/featured.php:99
+#, php-format
+msgid "A selection of some of the great users on %s"
+msgstr "A selection of some of the great users on %s"
+
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice id"
+msgstr "New notice"
+
+#: actions/file.php:38
+#, fuzzy
+msgid "No notice"
+msgstr "New notice"
+
+#: actions/file.php:42
+msgid "No attachments"
+msgstr ""
+
+#: actions/file.php:51
+msgid "No uploaded attachments"
+msgstr ""
+
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "Not expecting this response!"
+
+#: actions/finishremotesubscribe.php:80
+#, fuzzy
+msgid "User being listened to does not exist."
+msgstr "User being listened to doesn't exist."
+
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+msgid "You can use the local subscription!"
+msgstr "You can use the local subscription!"
+
+#: actions/finishremotesubscribe.php:96
+msgid "That user has blocked you from subscribing."
+msgstr "That user has blocked you from subscribing."
+
+#: actions/finishremotesubscribe.php:106
+#, fuzzy
+msgid "You are not authorized."
+msgstr "Not authorised."
+
+#: actions/finishremotesubscribe.php:109
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Couldn't convert request tokens to access tokens."
+
+#: actions/finishremotesubscribe.php:114
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "Unknown version of OMB protocol."
+
+#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
+msgid "Error updating remote profile"
+msgstr "Error updating remote profile."
+
+#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/groupblock.php:86
+#: actions/groupunblock.php:86 actions/leavegroup.php:83
+#: actions/makeadmin.php:86 lib/command.php:212 lib/command.php:263
+msgid "No such group."
+msgstr "No such group."
+
+#: actions/getfile.php:75
+#, fuzzy
+msgid "No such file."
+msgstr "No such notice."
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "Cannot read file."
+msgstr "Lost our file."
+
+#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/makeadmin.php:81
+#, fuzzy
+msgid "No group specified."
+msgstr "No profile specified."
+
+#: actions/groupblock.php:91
+msgid "Only an admin can block group members."
+msgstr ""
+
+#: actions/groupblock.php:95
+#, fuzzy
+msgid "User is already blocked from group."
+msgstr "User has blocked you."
+
+#: actions/groupblock.php:100
+#, fuzzy
+msgid "User is not a member of group."
+msgstr "You are not a member of that group."
+
+#: actions/groupblock.php:136 actions/groupmembers.php:314
+#, fuzzy
+msgid "Block user from group"
+msgstr "Block user"
+
+#: actions/groupblock.php:155
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
+"be removed from the group, unable to post, and unable to subscribe to the "
+"group in the future."
+msgstr ""
+
+#: actions/groupblock.php:193
+msgid "Database error blocking user from group."
+msgstr ""
+
+#: actions/groupbyid.php:74
+msgid "No ID"
+msgstr "No ID"
+
+#: actions/groupdesignsettings.php:68
+#, fuzzy
+msgid "You must be logged in to edit a group."
+msgstr "You must be logged in to create a group."
+
+#: actions/groupdesignsettings.php:141
+#, fuzzy
+msgid "Group design"
+msgstr "Groups"
+
+#: actions/groupdesignsettings.php:152
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
+#: lib/designsettings.php:434 lib/designsettings.php:464
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Couldn't update user."
+
+#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
+#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#, fuzzy
+msgid "Unable to save your design settings!"
+msgstr "Unable to save your Twitter settings!"
+
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Sync preferences saved."
+
+#: actions/grouplogo.php:139 actions/grouplogo.php:192
+msgid "Group logo"
+msgstr "Group logo"
+
+#: actions/grouplogo.php:150
+#, fuzzy, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr "You can upload a logo image for your group."
+
+#: actions/grouplogo.php:362
+#, fuzzy
+msgid "Pick a square area of the image to be the logo."
+msgstr "Pick a square area of the image to be your avatar"
+
+#: actions/grouplogo.php:396
+msgid "Logo updated."
+msgstr "Logo updated."
+
+#: actions/grouplogo.php:398
+msgid "Failed updating logo."
+msgstr "Failed updating logo."
+
+#: actions/groupmembers.php:93 lib/groupnav.php:91
+#, php-format
+msgid "%s group members"
+msgstr "%s group members"
+
+#: actions/groupmembers.php:96
+#, php-format
+msgid "%s group members, page %d"
+msgstr "%s group members, page %d"
+
+#: actions/groupmembers.php:111
+msgid "A list of the users in this group."
+msgstr "A list of the users in this group."
+
+#: actions/groupmembers.php:175 lib/groupnav.php:106
+msgid "Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:346 lib/blockform.php:153
+msgid "Block"
+msgstr "Block"
+
+#: actions/groupmembers.php:346 lib/blockform.php:123 lib/blockform.php:153
+msgid "Block this user"
+msgstr "Block this user"
+
+#: actions/groupmembers.php:441
+#, fuzzy
+msgid "Make user an admin of the group"
+msgstr "You must be an admin to edit the group"
+
+#: actions/groupmembers.php:473
+#, fuzzy
+msgid "Make Admin"
+msgstr "Admin"
+
+#: actions/groupmembers.php:473
+msgid "Make this user an admin"
+msgstr ""
+
+#: actions/grouprss.php:133
+#, fuzzy, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Updates from %1$s on %2$s!"
+
+#: actions/groupsearch.php:52
+#, fuzzy, php-format
+msgid ""
+"Search for groups on %%site.name%% by their name, location, or description. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+
+#: actions/groupsearch.php:58
+msgid "Group search"
+msgstr "Group search"
+
+#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#: actions/peoplesearch.php:83
+#, fuzzy
+msgid "No results."
+msgstr "No results"
+
+#: actions/groupsearch.php:82
+#, php-format
+msgid ""
+"If you can't find the group you're looking for, you can [create it](%%action."
+"newgroup%%) yourself."
+msgstr ""
+
+#: actions/groupsearch.php:85
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#: actions/groups.php:62 lib/profileaction.php:220 lib/publicgroupnav.php:81
+#: lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Groups"
+
+#: actions/groups.php:64
+#, php-format
+msgid "Groups, page %d"
+msgstr "Groups, page %d"
+
+#: actions/groups.php:90
+#, php-format
+msgid ""
+"%%%%site.name%%%% groups let you find and talk with people of similar "
+"interests. After you join a group you can send messages to all other members "
+"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
+"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
+"%%%%)"
+msgstr ""
+
+#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
+msgid "Create a new group"
+msgstr "Create a new group"
+
+#: actions/groupunblock.php:91
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#: actions/groupunblock.php:95
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "User has blocked you."
+
+#: actions/groupunblock.php:128 actions/unblock.php:108
+msgid "Error removing the block."
+msgstr "Error removing the block."
+
+#: actions/imsettings.php:59
+msgid "IM Settings"
+msgstr "I.M. Settings"
+
+#: actions/imsettings.php:70
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+msgstr ""
+"You can send and receive notices through Jabber/GTalk [instant messages](%%"
+"doc.im%%). Configure your address and settings below."
+
+#: actions/imsettings.php:89
+#, fuzzy
+msgid "IM is not available."
+msgstr "This page is not available in a "
+
+#: actions/imsettings.php:106
+msgid "Current confirmed Jabber/GTalk address."
+msgstr "Current confirmed Jabber/GTalk address."
+
+#: actions/imsettings.php:114
+#, fuzzy, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
+"message with further instructions. (Did you add %s to your buddy list?)"
+
+#: actions/imsettings.php:124
+msgid "IM Address"
+msgstr "I.M. Address"
+
+#: actions/imsettings.php:126
+#, php-format
+msgid ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+msgstr ""
+"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
+"add %s to your buddy list in your IM client or on GTalk."
+
+#: actions/imsettings.php:143
+msgid "Send me notices through Jabber/GTalk."
+msgstr "Send me notices through Jabber/GTalk."
+
+#: actions/imsettings.php:148
+msgid "Post a notice when my Jabber/GTalk status changes."
+msgstr "Post a notice when my Jabber/GTalk status changes."
+
+#: actions/imsettings.php:153
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr ""
+"Send me replies through Jabber/GTalk from people I'm not subscribed to."
+
+#: actions/imsettings.php:159
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "Publish a MicroID for my Jabber/GTalk address."
+
+#: actions/imsettings.php:285
+msgid "No Jabber ID."
+msgstr "No Jabber ID."
+
+#: actions/imsettings.php:292
+msgid "Cannot normalize that Jabber ID"
+msgstr "Cannot normalise Jabber ID"
+
+#: actions/imsettings.php:296
+msgid "Not a valid Jabber ID"
+msgstr "Not a valid Jabber ID"
+
+#: actions/imsettings.php:299
+msgid "That is already your Jabber ID."
+msgstr "That is already your Jabber ID."
+
+#: actions/imsettings.php:302
+msgid "Jabber ID already belongs to another user."
+msgstr "Jabber ID already belongs to another user."
+
+#: actions/imsettings.php:327
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+
+#: actions/imsettings.php:387
+msgid "That is not your Jabber ID."
+msgstr "That is not your Jabber ID."
+
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %s - page %d"
+msgstr "Inbox for %s - page %d"
+
+#: actions/inbox.php:62
+#, php-format
+msgid "Inbox for %s"
+msgstr "Inbox for %s"
+
+#: actions/inbox.php:115
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr "This is your inbox, which lists your incoming private messages."
+
+#: actions/invite.php:39
+msgid "Invites have been disabled."
+msgstr ""
+
+#: actions/invite.php:41
+#, php-format
+msgid "You must be logged in to invite other users to use %s"
+msgstr "You must be logged in to invite other users to use %s"
+
+#: actions/invite.php:72
+#, php-format
+msgid "Invalid email address: %s"
+msgstr "Invalid e-mail address: %s"
+
+#: actions/invite.php:110
+msgid "Invitation(s) sent"
+msgstr "Invitation(s) sent"
+
+#: actions/invite.php:112
+msgid "Invite new users"
+msgstr "Invite new users"
+
+#: actions/invite.php:128
+msgid "You are already subscribed to these users:"
+msgstr "You are already subscribed to these users:"
+
+#: actions/invite.php:131 actions/invite.php:139
+#, php-format
+msgid "%s (%s)"
+msgstr "%s (%s)"
+
+#: actions/invite.php:136
+msgid ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr ""
+"These people are already users and you were automatically subscribed to them:"
+
+#: actions/invite.php:144
+msgid "Invitation(s) sent to the following people:"
+msgstr "Invitation(s) sent to the following people:"
+
+#: actions/invite.php:150
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+
+#: actions/invite.php:162
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+"Use this form to invite your friends and colleagues to use this service."
+
+#: actions/invite.php:187
+msgid "Email addresses"
+msgstr "E-mail addresses"
+
+#: actions/invite.php:189
+msgid "Addresses of friends to invite (one per line)"
+msgstr "Addresses of friends to invite (one per line)"
+
+#: actions/invite.php:192
+msgid "Personal message"
+msgstr "Personal message"
+
+#: actions/invite.php:194
+msgid "Optionally add a personal message to the invitation."
+msgstr "Optionally add a personal message to the invitation."
+
+#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:208
+msgid "Send"
+msgstr "Send"
+
+#: actions/invite.php:226
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s has invited you to join them on %2$s"
-#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
#: actions/invite.php:228
#, php-format
msgid ""
@@ -111,982 +1593,96 @@ msgstr ""
"\n"
"Sincerely, %2$s\n"
-#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
-#: lib/mail.php:236 lib/mail.php:235
+#: actions/joingroup.php:60
+msgid "You must be logged in to join a group."
+msgstr "You must be logged in to join a group."
+
+#: actions/joingroup.php:90 lib/command.php:217
+msgid "You are already a member of that group"
+msgstr "You are already a member of that group"
+
+#: actions/joingroup.php:128 lib/command.php:234
#, php-format
-msgid "%1$s is now listening to your notices on %2$s."
-msgstr "%1$s is now listening to your notices on %2$s."
+msgid "Could not join user %s to group %s"
+msgstr "Could not join user %s to group %s"
-#: ../lib/mail.php:126
+#: actions/joingroup.php:135 lib/command.php:239
#, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-msgstr ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
+msgid "%s joined group %s"
+msgstr "%s joined group %s"
-#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
-#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
-#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126
+#: actions/leavegroup.php:60
+msgid "You must be logged in to leave a group."
+msgstr "You must be logged in to leave a group."
+
+#: actions/leavegroup.php:90 lib/command.php:268
+msgid "You are not a member of that group."
+msgstr "You are not a member of that group."
+
+#: actions/leavegroup.php:119 lib/command.php:278
+msgid "Could not find membership record."
+msgstr "Could not find membership record."
+
+#: actions/leavegroup.php:127 lib/command.php:284
#, php-format
-msgid "%1$s updates that reply to updates from %2$s / %3$s."
-msgstr "%1$s updates that reply to updates from %2$s / %3$s."
+msgid "Could not remove user %s to group %s"
+msgstr "Could not remove user %s to group %s"
-#: ../actions/shownotice.php:45 actions/shownotice.php:45
-#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86
-#: actions/shownotice.php:180
+#: actions/leavegroup.php:134 lib/command.php:289
#, php-format
-msgid "%1$s's status on %2$s"
-msgstr "%1$s's status on %2$s"
+msgid "%s left group %s"
+msgstr "%s left group %s"
-#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
-#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
-#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
-#, php-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
-
-#: ../actions/publicrss.php:62 actions/publicrss.php:48
-#: actions/publicrss.php:90 actions/publicrss.php:89
-#, php-format
-msgid "%s Public Stream"
-msgstr "%s Public Stream"
-
-#: ../actions/all.php:47 ../actions/allrss.php:60
-#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
-#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51
-#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164
-#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99
-#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106
-#: actions/facebookhome.php:163 actions/twitapistatuses.php:130
-#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114
-#: actions/facebookhome.php:158 actions/twitapistatuses.php:89
-#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167
-#: actions/allrss.php:115 actions/apitimelinefriends.php:114
-#, php-format
-msgid "%s and friends"
-msgstr "%s and friends"
-
-#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
-#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
-#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106
-#: actions/publicrss.php:103
-#, php-format
-msgid "%s public timeline"
-msgstr "%s public timeline"
-
-#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
-#, php-format
-msgid "%s status"
-msgstr "%s status"
-
-#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
-#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
-#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154
-#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117
-#: actions/grouprss.php:131 actions/userrss.php:90
-#, php-format
-msgid "%s timeline"
-msgstr "%s timeline"
-
-#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
-#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
-#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110
-#: actions/publicrss.php:105
-#, php-format
-msgid "%s updates from everyone!"
-msgstr "%s updates from everyone!"
-
-#: ../actions/register.php:213 actions/register.php:497
-#: actions/register.php:545 actions/register.php:555 actions/register.php:561
-msgid ""
-"(You should receive a message by email momentarily, with instructions on how "
-"to confirm your email address.)"
-msgstr ""
-"(You should receive a message by e-mail momentarily, with instructions on "
-"how to confirm your e-mail address.)"
-
-#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
-#: lib/action.php:752 lib/action.php:767
-#, php-format
-msgid ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%). "
-msgstr ""
-"**%%site.name%%** is a microblogging service brought to you by [%%site."
-"broughtby%%](%%site.broughtbyurl%%)."
-
-#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
-#: lib/action.php:754 lib/action.php:769
-#, php-format
-msgid "**%%site.name%%** is a microblogging service. "
-msgstr "**%%site.name%%** is a microblogging service."
-
-#: ../lib/util.php:274 lib/util.php:290
-msgid ". Contributors should be attributed by full name or nickname."
-msgstr ". Contributors should be attributed by full name or nickname."
-
-#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
-#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
-#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100
-#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
-#: lib/groupeditform.php:154 actions/profilesettings.php:108
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 lowercase letters or numbers, no punctuation or spaces"
-
-#: ../actions/register.php:152 actions/register.php:166
-#: actions/register.php:368 actions/register.php:414 actions/register.php:418
-#: actions/register.php:424
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-
-#: ../actions/password.php:42 actions/profilesettings.php:181
-#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
-msgid "6 or more characters"
-msgstr "6 or more characters"
-
-#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186
-#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 or more characters, and don't forget it!"
-
-#: ../actions/register.php:154 actions/register.php:168
-#: actions/register.php:373 actions/register.php:419 actions/register.php:423
-#: actions/register.php:429
-msgid "6 or more characters. Required."
-msgstr "6 or more characters. Required."
-
-#: ../actions/imsettings.php:197 actions/imsettings.php:205
-#: actions/imsettings.php:321 actions/imsettings.php:327
-#, php-format
-msgid ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-msgstr ""
-"A confirmation code was sent to the IM address you added. You must approve %"
-"s for sending messages to you."
-
-#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
-#: actions/emailsettings.php:350 actions/emailsettings.php:358
-msgid ""
-"A confirmation code was sent to the email address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"A confirmation code was sent to the e-mail address you added. Check your "
-"inbox (and spam box!) for the code and instructions on how to use it."
-
-#: ../actions/smssettings.php:216 actions/smssettings.php:224
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-msgstr ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-
-#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
-#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
-#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532
-#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49
-#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111
-#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156
-#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93
-#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288
-#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504
-#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37
-#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85
-#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121
-#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82
-#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79
-#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228
-#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392
-#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429
-#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120
-#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108
-#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159
-#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257
-#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426
-#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109
-#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110
-#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211
-#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372
-#: actions/twitapistatuses.php:409 actions/twitapitags.php:110
-#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70
-#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99
-#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100
-#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129
-#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114
-#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141
-#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120
-#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105
-#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102
-#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133
-#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
-#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154
-#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149
-#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
-#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
-msgid "API method not found!"
-msgstr "API method not found!"
-
-#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
-#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
-#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43
-#: ../actions/twitapidirect_messages.php:49
-#: ../actions/twitapidirect_messages.php:56
-#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41
-#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53
-#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29
-#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768
-#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109
-#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28
-#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170
-#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53
-#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34
-#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45
-#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103
-#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143
-#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172
-#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37
-#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46
-#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104
-#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149
-#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87
-#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
-#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
-msgid "API method under construction."
-msgstr "API method under construction."
-
-#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
-#: lib/action.php:706 lib/action.php:721
-msgid "About"
-msgstr "About"
-
-#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
-#: actions/userauthorization.php:143 actions/userauthorization.php:178
-#: actions/userauthorization.php:209
-msgid "Accept"
-msgstr "Accept"
-
-#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63
-#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71
-#: actions/emailsettings.php:63 actions/imsettings.php:64
-#: actions/openidsettings.php:58 actions/smssettings.php:71
-#: actions/twittersettings.php:85 actions/emailsettings.php:120
-#: actions/imsettings.php:127 actions/openidsettings.php:111
-#: actions/smssettings.php:133 actions/twittersettings.php:163
-#: actions/twittersettings.php:166 actions/twittersettings.php:182
-#: actions/emailsettings.php:126 actions/imsettings.php:133
-#: actions/smssettings.php:145
-msgid "Add"
-msgstr "Add"
-
-#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
-#: actions/openidsettings.php:93
-msgid "Add OpenID"
-msgstr "Add OpenID"
-
-#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
-#: lib/accountsettingsaction.php:117
-msgid "Add or remove OpenIDs"
-msgstr "Add or remove OpenIDs"
-
-#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
-#: ../actions/smssettings.php:39 actions/emailsettings.php:39
-#: actions/imsettings.php:40 actions/smssettings.php:39
-#: actions/emailsettings.php:94 actions/imsettings.php:94
-#: actions/smssettings.php:92 actions/emailsettings.php:100
-#: actions/imsettings.php:100 actions/smssettings.php:104
-msgid "Address"
-msgstr "Address"
-
-#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
-#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Addresses of friends to invite (one per line)"
-
-#: ../actions/showstream.php:273 actions/showstream.php:288
-#: actions/showstream.php:422 lib/profileaction.php:126
-msgid "All subscriptions"
-msgstr "All subscriptions"
-
-#: ../actions/publicrss.php:64 actions/publicrss.php:50
-#: actions/publicrss.php:92 actions/publicrss.php:91
-#, php-format
-msgid "All updates for %s"
-msgstr "All updates for %s"
-
-#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
-#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
-#, php-format
-msgid "All updates matching search term \"%s\""
-msgstr "All updates matching search term \"%s\""
-
-#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
-#: ../actions/openidlogin.php:29 ../actions/register.php:30
-#: actions/finishopenidlogin.php:29 actions/login.php:31
-#: actions/openidlogin.php:29 actions/register.php:30
-#: actions/finishopenidlogin.php:34 actions/login.php:77
-#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131
#: actions/login.php:79 actions/register.php:137
msgid "Already logged in."
msgstr "Already logged in."
-#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48
-msgid "Already subscribed!."
-msgstr "Already subscribed!"
+#: actions/login.php:110 actions/login.php:120
+#, fuzzy
+msgid "Invalid or expired token."
+msgstr "Invalid notice content"
-#: ../actions/deletenotice.php:54 actions/deletenotice.php:55
-#: actions/deletenotice.php:113 actions/deletenotice.php:114
-#: actions/deletenotice.php:144
-msgid "Are you sure you want to delete this notice?"
-msgstr "Are you sure you want to delete this notice?"
+#: actions/login.php:143
+msgid "Incorrect username or password."
+msgstr "Incorrect username or password."
-#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
-#: actions/userauthorization.php:81 actions/userauthorization.php:76
-#: actions/userauthorization.php:105
-msgid "Authorize subscription"
-msgstr "Authorise subscription"
-
-#: ../actions/login.php:104 ../actions/register.php:178
-#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117
-#: actions/register.php:416 actions/register.php:463 actions/login.php:226
-#: actions/register.php:473 actions/login.php:253 actions/register.php:479
-msgid "Automatically login in the future; not for shared computers!"
-msgstr "Automatically login in the future; not for shared computers!"
-
-#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
-#: actions/profilesettings.php:144 actions/profilesettings.php:145
-#: actions/profilesettings.php:160
-msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
-msgstr ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
-
-#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
-#: actions/profilesettings.php:34 actions/avatarsettings.php:65
-#: actions/showgroup.php:209 lib/accountsettingsaction.php:107
-#: actions/avatarsettings.php:67 actions/showgroup.php:211
-#: actions/showgroup.php:216 actions/showgroup.php:221
-#: lib/accountsettingsaction.php:111
-msgid "Avatar"
-msgstr "Avatar"
-
-#: ../actions/avatar.php:113 actions/profilesettings.php:350
-#: actions/avatarsettings.php:395 actions/avatarsettings.php:346
-#: actions/avatarsettings.php:360
-msgid "Avatar updated."
-msgstr "Avatar updated."
-
-#: ../actions/imsettings.php:55 actions/imsettings.php:56
-#: actions/imsettings.php:108 actions/imsettings.php:114
-#, fuzzy, php-format
-msgid ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-msgstr ""
-"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
-"message with further instructions. (Did you add %s to your buddy list?)"
-
-#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
-#: actions/emailsettings.php:107 actions/emailsettings.php:113
-msgid ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-msgstr ""
-"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
-"a message with further instructions."
-
-#: ../actions/smssettings.php:58 actions/smssettings.php:58
-#: actions/smssettings.php:111 actions/smssettings.php:123
-msgid "Awaiting confirmation on this phone number."
-msgstr "Awaiting confirmation on this phone number."
-
-#: ../lib/util.php:1318 lib/util.php:1452
-msgid "Before »"
-msgstr "Before »"
-
-#: ../actions/profilesettings.php:49 ../actions/register.php:170
-#: actions/profilesettings.php:82 actions/register.php:184
-#: actions/profilesettings.php:112 actions/register.php:402
-#: actions/register.php:448 actions/profilesettings.php:127
-#: actions/register.php:459 actions/register.php:465
-msgid "Bio"
-msgstr "Bio"
-
-#: ../actions/profilesettings.php:101 ../actions/register.php:82
-#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
-#: actions/register.php:89 actions/updateprofile.php:104
-#: actions/profilesettings.php:205 actions/register.php:174
-#: actions/updateprofile.php:107 actions/updateprofile.php:109
-#: actions/profilesettings.php:206 actions/register.php:211
-msgid "Bio is too long (max 140 chars)."
-msgstr "Bio is too long (max 140 chars)."
-
-#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr "Can't delete this notice."
-
-#: ../actions/updateprofile.php:119 actions/updateprofile.php:120
-#: actions/updateprofile.php:123 actions/updateprofile.php:125
-#, php-format
-msgid "Can't read avatar URL '%s'"
-msgstr "Can't read avatar URL '%s'"
-
-#: ../actions/password.php:85 ../actions/recoverpassword.php:300
-#: actions/profilesettings.php:404 actions/recoverpassword.php:313
-#: actions/passwordsettings.php:169 actions/recoverpassword.php:347
-#: actions/passwordsettings.php:174 actions/recoverpassword.php:365
-#: actions/passwordsettings.php:180 actions/recoverpassword.php:368
-#: actions/passwordsettings.php:185
-msgid "Can't save new password."
-msgstr "Can't save new password."
-
-#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58
-#: ../actions/smssettings.php:62 actions/emailsettings.php:58
-#: actions/imsettings.php:59 actions/smssettings.php:62
-#: actions/emailsettings.php:111 actions/imsettings.php:114
-#: actions/smssettings.php:114 actions/emailsettings.php:117
-#: actions/imsettings.php:120 actions/smssettings.php:126
-msgid "Cancel"
-msgstr "Cancel"
-
-#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130
-#: lib/openid.php:133
-msgid "Cannot instantiate OpenID consumer object."
-msgstr "Cannot create OpenID consumer object."
-
-#: ../actions/imsettings.php:163 actions/imsettings.php:171
-#: actions/imsettings.php:286 actions/imsettings.php:292
-msgid "Cannot normalize that Jabber ID"
-msgstr "Cannot normalise Jabber ID"
-
-#: ../actions/emailsettings.php:181 actions/emailsettings.php:199
-#: actions/emailsettings.php:311 actions/emailsettings.php:318
-#: actions/emailsettings.php:326
-msgid "Cannot normalize that email address"
-msgstr "Cannot normalise that e-mail address"
-
-#: ../actions/password.php:45 actions/profilesettings.php:184
-#: actions/passwordsettings.php:110 actions/passwordsettings.php:116
-msgid "Change"
-msgstr "Change"
-
-#: ../lib/settingsaction.php:88 lib/settingsaction.php:88
-#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118
-msgid "Change email handling"
-msgstr "Change e-mail handling"
-
-#: ../actions/password.php:32 actions/profilesettings.php:36
-#: actions/passwordsettings.php:58
-msgid "Change password"
-msgstr "Change password"
-
-#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111
-#: lib/accountsettingsaction.php:115
-msgid "Change your password"
-msgstr "Change your password"
-
-#: ../lib/settingsaction.php:85 lib/settingsaction.php:85
-#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109
-msgid "Change your profile settings"
-msgstr "Change your profile settings"
-
-#: ../actions/password.php:43 ../actions/recoverpassword.php:181
-#: ../actions/register.php:155 ../actions/smssettings.php:65
-#: actions/profilesettings.php:182 actions/recoverpassword.php:187
-#: actions/register.php:169 actions/smssettings.php:65
-#: actions/passwordsettings.php:105 actions/recoverpassword.php:221
-#: actions/register.php:376 actions/smssettings.php:122
-#: actions/recoverpassword.php:236 actions/register.php:422
-#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
-#: actions/register.php:426 actions/smssettings.php:134
-#: actions/register.php:432
-msgid "Confirm"
-msgstr "Confirm"
-
-#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90
-#: actions/confirmaddress.php:144
-msgid "Confirm Address"
-msgstr "Confirm Address"
-
-#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222
-#: ../actions/smssettings.php:245 actions/emailsettings.php:256
-#: actions/imsettings.php:230 actions/smssettings.php:253
-#: actions/emailsettings.php:379 actions/imsettings.php:361
-#: actions/smssettings.php:374 actions/emailsettings.php:386
-#: actions/emailsettings.php:394 actions/imsettings.php:367
-#: actions/smssettings.php:386
-msgid "Confirmation cancelled."
-msgstr "Confirmation cancelled."
-
-#: ../actions/smssettings.php:63 actions/smssettings.php:63
-#: actions/smssettings.php:118 actions/smssettings.php:130
-msgid "Confirmation code"
-msgstr "Confirmation code"
-
-#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38
-#: actions/confirmaddress.php:80
-msgid "Confirmation code not found."
-msgstr "Confirmation code not found."
-
-#: ../actions/register.php:202 actions/register.php:473
-#: actions/register.php:521 actions/register.php:531 actions/register.php:537
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to...\n"
-"\n"
-"* Go to [your profile](%s) and post your first message.\n"
-"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send "
-"notices through instant messages.\n"
-"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that "
-"share your interests. \n"
-"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell "
-"others more about you. \n"
-"* Read over the [online docs](%%%%doc.help%%%%) for features you may have "
-"missed. \n"
-"\n"
-"Thanks for signing up and we hope you enjoy using this service."
-msgstr ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to...\n"
-"\n"
-"* Go to [your profile](%s) and post your first message.\n"
-"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send "
-"notices through instant messages.\n"
-"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that "
-"share your interests. \n"
-"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell "
-"others more about you. \n"
-"* Read over the [online docs](%%%%doc.help%%%%) for features you may have "
-"missed. \n"
-"\n"
-"Thanks for signing up and we hope you enjoy using this service."
-
-#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97
-#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403
-#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422
-#: lib/action.php:425 lib/action.php:435
-msgid "Connect"
-msgstr "Connect"
-
-#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92
-#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113
-msgid "Connect existing account"
-msgstr "Connect existing account"
-
-#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669
-#: lib/action.php:719 lib/action.php:734
-msgid "Contact"
-msgstr "Contact"
-
-#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187
-#: lib/openid.php:190
-#, php-format
-msgid "Could not create OpenID form: %s"
-msgstr "Could not create OpenID from: %s"
-
-#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76
-#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64
-#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68
-#: actions/apifriendshipscreate.php:118
-#, php-format
-msgid "Could not follow user: %s is already on your list."
-msgstr "Could not follow user: %s is already on your list."
-
-#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53
-#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43
-#: actions/apifriendshipscreate.php:109
-msgid "Could not follow user: User not found."
-msgstr "Could not follow user: User not found."
-
-#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169
-#: lib/openid.php:172
-#, php-format
-msgid "Could not redirect to server: %s"
-msgstr "Could not redirect to server: %s"
-
-#: ../actions/updateprofile.php:162 actions/updateprofile.php:163
-#: actions/updateprofile.php:166 actions/updateprofile.php:176
-msgid "Could not save avatar info"
-msgstr "Could not save avatar info"
-
-#: ../actions/updateprofile.php:155 actions/updateprofile.php:156
-#: actions/updateprofile.php:159 actions/updateprofile.php:163
-msgid "Could not save new profile info"
-msgstr "Could not save new profile info"
-
-#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75
-msgid "Could not subscribe other to you."
-msgstr "Could not subscribe other to you."
-
-#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56
-msgid "Could not subscribe."
-msgstr "Could not subscribe."
-
-#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105
-#: actions/recoverpassword.php:111
-msgid "Could not update user with confirmed email address."
-msgstr "Couldn't update user with confirmed e-mail address."
-
-#: ../actions/finishremotesubscribe.php:99
-#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114
-msgid "Couldn't convert request tokens to access tokens."
-msgstr "Couldn't convert request tokens to access tokens."
-
-#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234
-#: ../actions/imsettings.php:218 ../actions/smssettings.php:241
-#: actions/confirmaddress.php:84 actions/emailsettings.php:252
-#: actions/imsettings.php:226 actions/smssettings.php:249
-#: actions/confirmaddress.php:126 actions/emailsettings.php:375
-#: actions/imsettings.php:357 actions/smssettings.php:370
-#: actions/emailsettings.php:382 actions/emailsettings.php:390
-#: actions/imsettings.php:363 actions/smssettings.php:382
-msgid "Couldn't delete email confirmation."
-msgstr "Couldn't delete e-mail confirmation."
-
-#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136
-msgid "Couldn't delete subscription."
-msgstr "Couldn't delete subscription."
-
-#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98
-#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87
-msgid "Couldn't find any statuses."
-msgstr "Couldn't find any statuses."
-
-#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136
-#: actions/remotesubscribe.php:178
-msgid "Couldn't get a request token."
-msgstr "Couldn't get a request token."
-
-#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187
-#: ../actions/smssettings.php:206 actions/emailsettings.php:223
-#: actions/imsettings.php:195 actions/smssettings.php:214
-#: actions/emailsettings.php:337 actions/imsettings.php:311
-#: actions/smssettings.php:325 actions/emailsettings.php:344
-#: actions/emailsettings.php:352 actions/imsettings.php:317
-#: actions/smssettings.php:337
-msgid "Couldn't insert confirmation code."
-msgstr "Couldn't insert confirmation code."
-
-#: ../actions/finishremotesubscribe.php:180
-#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218
-#: lib/oauthstore.php:487
-msgid "Couldn't insert new subscription."
-msgstr "Couldn't insert new subscription."
-
-#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96
-#: actions/profilesettings.php:299 actions/twitapiaccount.php:94
-#: actions/profilesettings.php:302 actions/twitapiaccount.php:81
-#: actions/twitapiaccount.php:82 actions/profilesettings.php:328
-msgid "Couldn't save profile."
-msgstr "Couldn't save profile."
-
-#: ../actions/profilesettings.php:161 actions/profilesettings.php:276
-#: actions/profilesettings.php:279 actions/profilesettings.php:295
-msgid "Couldn't update user for autosubscribe."
-msgstr "Couldn't update user for autosubscribe."
-
-#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294
-#: actions/emailsettings.php:298 actions/emailsettings.php:312
-#: actions/emailsettings.php:440 actions/emailsettings.php:462
-#: actions/emailsettings.php:447 actions/emailsettings.php:469
-#: actions/smssettings.php:515 actions/smssettings.php:539
-#: actions/smssettings.php:516 actions/smssettings.php:540
-#: actions/emailsettings.php:455 actions/emailsettings.php:477
-#: actions/smssettings.php:528 actions/smssettings.php:552
-msgid "Couldn't update user record."
-msgstr "Couldn't update user record."
-
-#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156
-#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138
-#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141
-#: ../actions/smssettings.php:157 ../actions/smssettings.php:269
-#: actions/confirmaddress.php:72 actions/emailsettings.php:174
-#: actions/emailsettings.php:277 actions/imsettings.php:146
-#: actions/imsettings.php:251 actions/profilesettings.php:256
-#: actions/smssettings.php:165 actions/smssettings.php:277
-#: actions/confirmaddress.php:114 actions/emailsettings.php:280
-#: actions/emailsettings.php:411 actions/imsettings.php:252
-#: actions/imsettings.php:395 actions/othersettings.php:162
-#: actions/profilesettings.php:259 actions/smssettings.php:266
-#: actions/smssettings.php:408 actions/emailsettings.php:287
-#: actions/emailsettings.php:418 actions/othersettings.php:167
-#: actions/profilesettings.php:260 actions/emailsettings.php:295
-#: actions/emailsettings.php:426 actions/imsettings.php:258
-#: actions/imsettings.php:401 actions/othersettings.php:174
-#: actions/profilesettings.php:276 actions/smssettings.php:278
-#: actions/smssettings.php:420
-msgid "Couldn't update user."
-msgstr "Couldn't update user."
-
-#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90
-#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111
-msgid "Create"
-msgstr "Create"
-
-#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76
-#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97
-msgid "Create a new user with this nickname."
-msgstr "Create a new user with this nickname."
-
-#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74
-#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95
-msgid "Create new account"
-msgstr "Create new account"
-
-#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197
-#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247
-msgid "Creating new account for OpenID that already has a user."
-msgstr "Creating new account for OpenID that already has a user."
-
-#: ../actions/imsettings.php:45 actions/imsettings.php:46
-#: actions/imsettings.php:100 actions/imsettings.php:106
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Current confirmed Jabber/GTalk address."
-
-#: ../actions/smssettings.php:46 actions/smssettings.php:46
-#: actions/smssettings.php:100 actions/smssettings.php:112
-msgid "Current confirmed SMS-enabled phone number."
-msgstr "Current confirmed SMS-enabled phone number."
-
-#: ../actions/emailsettings.php:44 actions/emailsettings.php:45
-#: actions/emailsettings.php:99 actions/emailsettings.php:105
-msgid "Current confirmed email address."
-msgstr "Current confirmed e-mail address."
-
-#: ../actions/showstream.php:356 actions/showstream.php:367
-msgid "Currently"
-msgstr "Currently"
-
-#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91
-#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164
-#, php-format
-msgid "DB error inserting hashtag: %s"
-msgstr "DB error inserting hashtag: %s"
-
-#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698
-#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117
-#: classes/Notice.php:1120
-#, php-format
-msgid "DB error inserting reply: %s"
-msgstr "DB error inserting reply: %s"
-
-#: ../actions/deletenotice.php:41 actions/deletenotice.php:41
-#: actions/deletenotice.php:79 actions/deletenotice.php:111
-#: actions/deletenotice.php:109 actions/deletenotice.php:141
-msgid "Delete notice"
-msgstr "Delete notice"
-
-#: ../actions/profilesettings.php:51 ../actions/register.php:172
-#: actions/profilesettings.php:84 actions/register.php:186
-#: actions/profilesettings.php:114 actions/register.php:404
-#: actions/register.php:450
-msgid "Describe yourself and your interests in 140 chars"
-msgstr "Describe yourself and your interests in 140 chars"
-
-#: ../actions/register.php:158 ../actions/register.php:161
-#: ../lib/settingsaction.php:87 actions/register.php:172
-#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381
-#: actions/register.php:385 lib/accountsettingsaction.php:113
-#: actions/register.php:427 actions/register.php:431 actions/register.php:435
-#: lib/accountsettingsaction.php:117 actions/register.php:437
-#: actions/register.php:441
-msgid "Email"
-msgstr "E-mail"
-
-#: ../actions/emailsettings.php:59 actions/emailsettings.php:60
-#: actions/emailsettings.php:115 actions/emailsettings.php:121
-msgid "Email Address"
-msgstr "E-mail Address"
-
-#: ../actions/emailsettings.php:32 actions/emailsettings.php:32
-#: actions/emailsettings.php:60
-msgid "Email Settings"
-msgstr "E-mail Settings"
-
-#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163
-#: actions/register.php:200 actions/register.php:206 actions/register.php:212
-msgid "Email address already exists."
-msgstr "E-mail address already exists."
-
-#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172
-msgid "Email address confirmation"
-msgstr "E-mail address confirmation"
-
-#: ../actions/emailsettings.php:61 actions/emailsettings.php:62
-#: actions/emailsettings.php:117 actions/emailsettings.php:123
-msgid "Email address, like \"UserName@example.org\""
-msgstr "E-mail address, like \"UserName@example.org\""
-
-#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174
-#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187
-msgid "Email addresses"
-msgstr "E-mail addresses"
-
-#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:231 actions/recoverpassword.php:249
-#: actions/recoverpassword.php:252
-msgid "Enter a nickname or email address."
-msgstr "Enter a nickname or e-mail address."
-
-#: ../actions/smssettings.php:64 actions/smssettings.php:64
-#: actions/smssettings.php:119 actions/smssettings.php:131
-msgid "Enter the code you received on your phone."
-msgstr "Enter the code you received on your phone."
-
-#: ../actions/userauthorization.php:137 actions/userauthorization.php:144
-#: actions/userauthorization.php:161 actions/userauthorization.php:200
-msgid "Error authorizing token"
-msgstr "Error authorising token."
-
-#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259
-#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302
-#: actions/finishopenidlogin.php:325
-msgid "Error connecting user to OpenID."
-msgstr "Error connecting user to OpenID."
-
-#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78
-#: actions/finishaddopenid.php:126
-msgid "Error connecting user."
-msgstr "Error connecting user."
-
-#: ../actions/finishremotesubscribe.php:151
-#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166
-#: lib/oauthstore.php:291
-msgid "Error inserting avatar"
-msgstr "Error inserting avatar."
-
-#: ../actions/finishremotesubscribe.php:143
-#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158
-#: lib/oauthstore.php:283
-msgid "Error inserting new profile"
-msgstr "Error inserting new profile."
-
-#: ../actions/finishremotesubscribe.php:167
-#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182
-#: lib/oauthstore.php:311
-msgid "Error inserting remote profile"
-msgstr "Error inserting remote profile."
-
-#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246
-#: actions/recoverpassword.php:280 actions/recoverpassword.php:298
-#: actions/recoverpassword.php:301
-msgid "Error saving address confirmation."
-msgstr "Error saving address confirmation."
-
-#: ../actions/userauthorization.php:140 actions/userauthorization.php:147
-#: actions/userauthorization.php:164 actions/userauthorization.php:203
-msgid "Error saving remote profile"
-msgstr "Error saving remote profile."
-
-#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235
-#: lib/openid.php:238
-msgid "Error saving the profile."
-msgstr "Error saving the profile."
-
-#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246
-#: lib/openid.php:249
-msgid "Error saving the user."
-msgstr "Error saving the user."
-
-#: ../actions/password.php:80 actions/profilesettings.php:399
-#: actions/passwordsettings.php:164 actions/passwordsettings.php:169
-#: actions/passwordsettings.php:175 actions/passwordsettings.php:180
-msgid "Error saving user; invalid."
-msgstr "Error saving user; invalid."
-
-#: ../actions/login.php:47 ../actions/login.php:73
-#: ../actions/recoverpassword.php:307 ../actions/register.php:98
-#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320
-#: actions/register.php:108 actions/login.php:112 actions/login.php:138
-#: actions/recoverpassword.php:354 actions/register.php:198
-#: actions/login.php:120 actions/recoverpassword.php:372
-#: actions/register.php:235 actions/login.php:122
-#: actions/recoverpassword.php:375 actions/register.php:242
-#: actions/login.php:149 actions/register.php:248
+#: actions/login.php:149 actions/recoverpassword.php:375
+#: actions/register.php:248
msgid "Error setting user."
msgstr "Error setting user."
-#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83
-#: actions/finishaddopenid.php:131
-msgid "Error updating profile"
-msgstr "Error updating profile."
+#: actions/login.php:204 actions/login.php:257 lib/action.php:453
+#: lib/logingroupnav.php:79
+msgid "Login"
+msgstr "Login"
-#: ../actions/finishremotesubscribe.php:161
-#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176
-#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306
-msgid "Error updating remote profile"
-msgstr "Error updating remote profile."
+#: actions/login.php:243
+msgid "Login to site"
+msgstr "Login to site"
-#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80
-#: actions/recoverpassword.php:86
-msgid "Error with confirmation code."
-msgstr "Error with confirmation code."
+#: actions/login.php:246 actions/profilesettings.php:106
+#: actions/register.php:423 actions/showgroup.php:236 actions/tagother.php:94
+#: lib/groupeditform.php:152 lib/userprofile.php:131
+msgid "Nickname"
+msgstr "Nickname"
-#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95
-#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116
-msgid "Existing nickname"
-msgstr "Existing nickname"
+#: actions/login.php:249 actions/register.php:428
+#: lib/accountsettingsaction.php:114
+msgid "Password"
+msgstr "Password"
-#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663
-#: lib/action.php:708 lib/action.php:723
-msgid "FAQ"
-msgstr "F.A.Q."
+#: actions/login.php:252 actions/register.php:477
+msgid "Remember me"
+msgstr "Remember me"
-#: ../actions/avatar.php:115 actions/profilesettings.php:352
-#: actions/avatarsettings.php:397 actions/avatarsettings.php:349
-#: actions/avatarsettings.php:363
-msgid "Failed updating avatar."
-msgstr "Failed updating avatar."
+#: actions/login.php:253 actions/register.php:479
+msgid "Automatically login in the future; not for shared computers!"
+msgstr "Automatically login in the future; not for shared computers!"
-#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61
-#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107
-#: actions/allrss.php:110 actions/allrss.php:118
-#, php-format
-msgid "Feed for friends of %s"
-msgstr "Feed for friends of %s"
+#: actions/login.php:263
+msgid "Lost or forgotten password?"
+msgstr "Lost or forgotten password?"
-#: ../actions/replies.php:65 ../actions/repliesrss.php:80
-#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134
-#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135
-#, php-format
-msgid "Feed for replies to %s"
-msgstr "Feed for replies to %s"
-
-#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61
-#: actions/tag.php:68
-#, php-format
-msgid "Feed for tag %s"
-msgstr "Feed for tag %s"
-
-#: ../lib/searchaction.php:105 lib/searchaction.php:105
-#: lib/searchgroupnav.php:83
-msgid "Find content of notices"
-msgstr "Find content of notices"
-
-#: ../lib/searchaction.php:101 lib/searchaction.php:101
-#: lib/searchgroupnav.php:81
-msgid "Find people on this site"
-msgstr "Find people on this site"
-
-#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255
#: actions/login.php:282
msgid ""
"For security reasons, please re-enter your user name and password before "
@@ -1095,3479 +1691,34 @@ msgstr ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
-#: ../actions/profilesettings.php:44 ../actions/register.php:164
-#: actions/profilesettings.php:77 actions/register.php:178
-#: actions/profilesettings.php:103 actions/register.php:391
-#: actions/showgroup.php:235 actions/showstream.php:262
-#: actions/tagother.php:105 lib/groupeditform.php:142
-#: actions/showgroup.php:237 actions/showstream.php:255
-#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242
-#: actions/showstream.php:220 lib/groupeditform.php:157
-#: actions/profilesettings.php:111 actions/register.php:441
-#: actions/showgroup.php:247 actions/showstream.php:267
-#: actions/register.php:447 lib/userprofile.php:149
-msgid "Full name"
-msgstr "Full name"
-
-#: ../actions/profilesettings.php:98 ../actions/register.php:79
-#: ../actions/updateprofile.php:93 actions/profilesettings.php:213
-#: actions/register.php:86 actions/updateprofile.php:94
-#: actions/editgroup.php:195 actions/newgroup.php:146
-#: actions/profilesettings.php:202 actions/register.php:171
-#: actions/updateprofile.php:97 actions/updateprofile.php:99
-#: actions/editgroup.php:197 actions/newgroup.php:147
-#: actions/profilesettings.php:203 actions/register.php:208
-#: actions/apigroupcreate.php:253 actions/editgroup.php:198
-#: actions/newgroup.php:142 actions/profilesettings.php:218
-#: actions/register.php:214 actions/register.php:220
-msgid "Full name is too long (max 255 chars)."
-msgstr "Full name is too long (max 255 chars)."
-
-#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566
-#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704
-#: lib/action.php:456 lib/action.php:719
-msgid "Help"
-msgstr "Help"
-
-#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
-#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
-#: lib/action.php:417 lib/action.php:430
-msgid "Home"
-msgstr "Home"
-
-#: ../actions/profilesettings.php:46 ../actions/register.php:167
-#: actions/profilesettings.php:79 actions/register.php:181
-#: actions/profilesettings.php:107 actions/register.php:396
-#: lib/groupeditform.php:146 actions/register.php:442
-#: lib/groupeditform.php:161 actions/profilesettings.php:115
-#: actions/register.php:446 actions/register.php:452
-msgid "Homepage"
-msgstr "Homepage"
-
-#: ../actions/profilesettings.php:95 ../actions/register.php:76
-#: actions/profilesettings.php:210 actions/register.php:83
-#: actions/editgroup.php:192 actions/newgroup.php:143
-#: actions/profilesettings.php:199 actions/register.php:168
-#: actions/editgroup.php:194 actions/newgroup.php:144
-#: actions/profilesettings.php:200 actions/register.php:205
-#: actions/apigroupcreate.php:244 actions/editgroup.php:195
-#: actions/newgroup.php:139 actions/profilesettings.php:215
-#: actions/register.php:211 actions/register.php:217
-msgid "Homepage is not a valid URL."
-msgstr "Homepage is not a valid URL."
-
-#: ../actions/emailsettings.php:91 actions/emailsettings.php:98
-#: actions/emailsettings.php:173 actions/emailsettings.php:178
-#: actions/emailsettings.php:185
-msgid "I want to post notices by email."
-msgstr "I want to post notices by e-mail."
-
-#: ../lib/settingsaction.php:102 lib/settingsaction.php:96
-#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110
-msgid "IM"
-msgstr "I.M."
-
-#: ../actions/imsettings.php:60 actions/imsettings.php:61
-#: actions/imsettings.php:118 actions/imsettings.php:124
-msgid "IM Address"
-msgstr "I.M. Address"
-
-#: ../actions/imsettings.php:33 actions/imsettings.php:33
-#: actions/imsettings.php:59
-msgid "IM Settings"
-msgstr "I.M. Settings"
-
-#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94
-#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-msgstr ""
-"If you already have an account, login with your username and password to "
-"connect it to your OpenID."
-
-#: ../actions/openidsettings.php:45 actions/openidsettings.php:96
-msgid ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-msgstr ""
-"If you want to add an OpenID to your account, enter it in the box below and "
-"click \"Add\"."
-
-#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"e-mail address you have stored in your account."
-
-#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76
-#: actions/emailsettings.php:68 actions/smssettings.php:76
-#: actions/emailsettings.php:127 actions/smssettings.php:140
-#: actions/emailsettings.php:133 actions/smssettings.php:152
-msgid "Incoming email"
-msgstr "Incoming e-mail"
-
-#: ../actions/emailsettings.php:283 actions/emailsettings.php:301
-#: actions/emailsettings.php:443 actions/emailsettings.php:450
-#: actions/smssettings.php:518 actions/smssettings.php:519
-#: actions/emailsettings.php:458 actions/smssettings.php:531
-msgid "Incoming email address removed."
-msgstr "Incoming e-mail address removed."
-
-#: ../actions/password.php:69 actions/profilesettings.php:388
-#: actions/passwordsettings.php:153 actions/passwordsettings.php:158
-#: actions/passwordsettings.php:164
-msgid "Incorrect old password"
-msgstr "Incorrect old password"
-
-#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131
-#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114
-#: actions/facebookhome.php:129 actions/login.php:116 actions/login.php:143
-msgid "Incorrect username or password."
-msgstr "Incorrect username or password."
-
-#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304
-#: actions/recoverpassword.php:322 actions/recoverpassword.php:325
-msgid ""
-"Instructions for recovering your password have been sent to the email "
-"address registered to your account."
-msgstr ""
-"Instructions for recovering your password have been sent to the e-mail "
-"address registered to your account."
-
-#: ../actions/updateprofile.php:114 actions/updateprofile.php:115
-#: actions/updateprofile.php:118 actions/updateprofile.php:120
-#, php-format
-msgid "Invalid avatar URL '%s'"
-msgstr "Invalid avatar URL '%s'"
-
-#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70
-#: actions/invite.php:72
-#, php-format
-msgid "Invalid email address: %s"
-msgstr "Invalid e-mail address: %s"
-
-#: ../actions/updateprofile.php:98 actions/updateprofile.php:99
-#: actions/updateprofile.php:102 actions/updateprofile.php:104
-#, php-format
-msgid "Invalid homepage '%s'"
-msgstr "Invalid homepage '%s'"
-
-#: ../actions/updateprofile.php:82 actions/updateprofile.php:83
-#: actions/updateprofile.php:86 actions/updateprofile.php:88
-#, php-format
-msgid "Invalid license URL '%s'"
-msgstr "Invalid licence URL '%s'"
-
-#: ../actions/postnotice.php:61 actions/postnotice.php:62
-#: actions/postnotice.php:66 actions/postnotice.php:84
-msgid "Invalid notice content"
-msgstr "Invalid notice content"
-
-#: ../actions/postnotice.php:67 actions/postnotice.php:68
-#: actions/postnotice.php:72
-msgid "Invalid notice uri"
-msgstr "Invalid notice URI"
-
-#: ../actions/postnotice.php:72 actions/postnotice.php:73
-#: actions/postnotice.php:77
-msgid "Invalid notice url"
-msgstr "Invalid notice URL"
-
-#: ../actions/updateprofile.php:87 actions/updateprofile.php:88
-#: actions/updateprofile.php:91 actions/updateprofile.php:93
-#, php-format
-msgid "Invalid profile URL '%s'."
-msgstr "Invalid profile URL '%s'."
-
-#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105
-#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Invalid profile URL (bad format)"
-
-#: ../actions/finishremotesubscribe.php:77
-#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80
-msgid "Invalid profile URL returned by server."
-msgstr "Invalid profile URL returned by server."
-
-#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37
-#: actions/avatarbynickname.php:69
-msgid "Invalid size."
-msgstr "Invalid size."
-
-#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93
-#: ../actions/register.php:111 actions/finishopenidlogin.php:241
-#: actions/register.php:103 actions/register.php:121
-#: actions/finishopenidlogin.php:279 actions/register.php:193
-#: actions/register.php:211 actions/finishopenidlogin.php:284
-#: actions/finishopenidlogin.php:307 actions/register.php:230
-#: actions/register.php:251 actions/register.php:237 actions/register.php:258
-#: actions/register.php:243 actions/register.php:264
-msgid "Invalid username or password."
-msgstr "Invalid username or password."
-
-#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102
-#: actions/invite.php:104 actions/invite.php:110
-msgid "Invitation(s) sent"
-msgstr "Invitation(s) sent"
-
-#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136
-#: actions/invite.php:138 actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr "Invitation(s) sent to the following people:"
-
-#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207
-#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429
-#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439
-msgid "Invite"
-msgstr "Invite"
-
-#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104
-#: actions/invite.php:106 actions/invite.php:112
-msgid "Invite new users"
-msgstr "Invite new users"
-
-#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706
-#: lib/action.php:756 lib/action.php:771
-#, php-format
-msgid ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public License](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-msgstr ""
-"It runs the [StatusNet](http://status.net/) microblogging software, version %"
-"s, available under the [GNU Affero General Public Licence](http://www.fsf."
-"org/licensing/licenses/agpl-3.0.html)."
-
-#: ../actions/imsettings.php:173 actions/imsettings.php:181
-#: actions/imsettings.php:296 actions/imsettings.php:302
-msgid "Jabber ID already belongs to another user."
-msgstr "Jabber ID already belongs to another user."
-
-#: ../actions/imsettings.php:62 actions/imsettings.php:63
-#: actions/imsettings.php:120 actions/imsettings.php:126
-#, php-format
-msgid ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-msgstr ""
-"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to "
-"add %s to your buddy list in your IM client or on GTalk."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:128 actions/profilesettings.php:129
-#: actions/profilesettings.php:144
-msgid "Language"
-msgstr "Language"
-
-#: ../actions/profilesettings.php:113 actions/profilesettings.php:228
-#: actions/profilesettings.php:217 actions/profilesettings.php:218
-#: actions/profilesettings.php:234
-msgid "Language is too long (max 50 chars)."
-msgstr "Language is too long (max 50 chars)."
-
-#: ../actions/profilesettings.php:52 ../actions/register.php:173
-#: actions/profilesettings.php:85 actions/register.php:187
-#: actions/profilesettings.php:117 actions/register.php:408
-#: actions/showgroup.php:244 actions/showstream.php:271
-#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126
-#: lib/profilelist.php:125 actions/showgroup.php:246
-#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123
-#: actions/register.php:454 actions/showgroup.php:251
-#: actions/showstream.php:229 actions/userauthorization.php:128
-#: lib/groupeditform.php:171 lib/profilelist.php:185
-#: actions/profilesettings.php:132 actions/register.php:464
-#: actions/showgroup.php:256 actions/showstream.php:282
-#: actions/userauthorization.php:158 lib/groupeditform.php:177
-#: lib/profilelist.php:218 actions/register.php:470 lib/userprofile.php:164
-msgid "Location"
-msgstr "Location"
-
-#: ../actions/profilesettings.php:104 ../actions/register.php:85
-#: ../actions/updateprofile.php:108 actions/profilesettings.php:219
-#: actions/register.php:92 actions/updateprofile.php:109
-#: actions/editgroup.php:201 actions/newgroup.php:152
-#: actions/profilesettings.php:208 actions/register.php:177
-#: actions/updateprofile.php:112 actions/updateprofile.php:114
-#: actions/editgroup.php:203 actions/newgroup.php:153
-#: actions/profilesettings.php:209 actions/register.php:214
-#: actions/apigroupcreate.php:272 actions/editgroup.php:204
-#: actions/newgroup.php:148 actions/profilesettings.php:225
-#: actions/register.php:221 actions/register.php:227
-msgid "Location is too long (max 255 chars)."
-msgstr "Location is too long (max 255 chars)."
-
-#: ../actions/login.php:97 ../actions/login.php:106
-#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97
-#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326
-#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239
-#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288
-#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169
-#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412
-#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443
-#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177
-#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79
-#: actions/login.php:204 actions/login.php:257
-#, php-format
-msgid "Login"
-msgstr "Login"
-
-#: ../actions/openidlogin.php:44 actions/openidlogin.php:52
-#: actions/openidlogin.php:62 actions/openidlogin.php:70
-#, php-format
-msgid "Login with an [OpenID](%%doc.openid%%) account."
-msgstr "Login with an [OpenID](%%doc.openid%%) account."
-
-#: ../actions/login.php:126 actions/login.php:251
-#, php-format
+#: actions/login.php:286
+#, fuzzy, php-format
msgid ""
"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
+"(%%action.register%%) a new account."
msgstr ""
"Login with your username and password. Don't have a username yet? [Register]"
"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
"%). "
-#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409
-#: lib/action.php:435 lib/action.php:445
-msgid "Logout"
-msgstr "Logout"
-
-#: ../actions/register.php:166 actions/register.php:180
-#: actions/register.php:393 actions/register.php:439 actions/register.php:443
-#: actions/register.php:449
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Longer name, preferably your \"real\" name"
-
-#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245
-#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325
-#: lib/facebookaction.php:327 actions/login.php:236 actions/login.php:263
-msgid "Lost or forgotten password?"
-msgstr "Lost or forgotten password?"
-
-#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89
-#: actions/emailsettings.php:81 actions/smssettings.php:89
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-#: actions/emailsettings.php:145 actions/smssettings.php:162
-msgid "Make a new email address for posting to; cancels the old one."
-msgstr "Make a new e-mail address for posting to - cancels the old one."
-
-#: ../actions/emailsettings.php:27 actions/emailsettings.php:27
-#: actions/emailsettings.php:71
-#, php-format
-msgid "Manage how you get email from %%site.name%%."
-msgstr "Manage how you get e-mail from %%site.name%%."
-
-#: ../actions/showstream.php:300 actions/showstream.php:315
-#: actions/showstream.php:480 lib/profileaction.php:182
-msgid "Member since"
-msgstr "Member since"
-
-#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72
-#: actions/userrss.php:93
-#, php-format
-msgid "Microblog by %s"
-msgstr "Microblog by %s"
-
-#: ../actions/smssettings.php:304 actions/smssettings.php:464
-#: actions/smssettings.php:476
-#, fuzzy, php-format
-msgid ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
-"email but isn't listed here, send email to let us know at %s."
+#: actions/makeadmin.php:91
+msgid "Only an admin can make another user an admin."
msgstr ""
-"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-"
-"mail but isn't listed here, send e-mail to let us know at %s."
-#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188
-#: actions/finishopenidlogin.php:85 actions/register.php:202
-#: actions/finishopenidlogin.php:107 actions/register.php:429
-#: actions/register.php:430 actions/finishopenidlogin.php:106
-#: actions/register.php:477 actions/register.php:487 actions/register.php:493
-msgid "My text and files are available under "
-msgstr "My text and files are available under "
-
-#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91
-#: actions/emailsettings.php:83 actions/smssettings.php:91
-#: actions/emailsettings.php:142 actions/smssettings.php:152
-#: actions/emailsettings.php:148 actions/smssettings.php:164
-msgid "New"
-msgstr "New"
-
-#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285
+#: actions/makeadmin.php:95
#, php-format
-msgid "New email address for posting to %s"
-msgstr "New e-mail address for posting to %s"
-
-#: ../actions/emailsettings.php:297 actions/emailsettings.php:315
-#: actions/emailsettings.php:465 actions/emailsettings.php:472
-#: actions/smssettings.php:542 actions/smssettings.php:543
-#: actions/emailsettings.php:480 actions/smssettings.php:555
-msgid "New incoming email address added."
-msgstr "New incoming e-mail address added."
-
-#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77
-#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98
-msgid "New nickname"
-msgstr "New nickname"
-
-#: ../actions/newnotice.php:87 actions/newnotice.php:96
-#: actions/newnotice.php:68 actions/newnotice.php:69
-msgid "New notice"
-msgstr "New notice"
-
-#: ../actions/password.php:41 ../actions/recoverpassword.php:179
-#: actions/profilesettings.php:180 actions/recoverpassword.php:185
-#: actions/passwordsettings.php:101 actions/recoverpassword.php:219
-#: actions/recoverpassword.php:232 actions/passwordsettings.php:107
-#: actions/recoverpassword.php:235
-msgid "New password"
-msgstr "New password"
-
-#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361
-#: actions/recoverpassword.php:379 actions/recoverpassword.php:382
-msgid "New password successfully saved. You are now logged in."
-msgstr "New password successfully saved. You are now logged in."
-
-#: ../actions/login.php:101 ../actions/profilesettings.php:41
-#: ../actions/register.php:151 actions/login.php:101
-#: actions/profilesettings.php:74 actions/register.php:165
-#: actions/login.php:228 actions/profilesettings.php:98
-#: actions/register.php:367 actions/showgroup.php:224
-#: actions/showstream.php:251 actions/tagother.php:95
-#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211
-#: actions/showgroup.php:226 actions/showstream.php:244
-#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413
-#: actions/showgroup.php:231 actions/showstream.php:209
-#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219
-#: actions/profilesettings.php:106 actions/register.php:417
-#: actions/showgroup.php:236 actions/showstream.php:249 actions/login.php:246
-#: actions/register.php:423 lib/userprofile.php:131
-msgid "Nickname"
-msgstr "Nickname"
-
-#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110
-#: ../actions/register.php:69 actions/finishopenidlogin.php:181
-#: actions/profilesettings.php:225 actions/register.php:76
-#: actions/editgroup.php:183 actions/finishopenidlogin.php:215
-#: actions/newgroup.php:134 actions/profilesettings.php:214
-#: actions/register.php:159 actions/editgroup.php:185
-#: actions/finishopenidlogin.php:231 actions/newgroup.php:135
-#: actions/profilesettings.php:215 actions/register.php:196
-#: actions/apigroupcreate.php:221 actions/editgroup.php:186
-#: actions/newgroup.php:130 actions/profilesettings.php:231
-#: actions/register.php:202 actions/register.php:208
-msgid "Nickname already in use. Try another one."
-msgstr "Nickname already in use. Try another one."
-
-#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88
-#: ../actions/register.php:67 ../actions/updateprofile.php:77
-#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203
-#: actions/register.php:74 actions/updateprofile.php:78
-#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192
-#: actions/updateprofile.php:81 actions/editgroup.php:179
-#: actions/newgroup.php:130 actions/register.php:156
-#: actions/updateprofile.php:83 actions/editgroup.php:181
-#: actions/finishopenidlogin.php:221 actions/newgroup.php:131
-#: actions/profilesettings.php:193 actions/register.php:193
-#: actions/apigroupcreate.php:212 actions/editgroup.php:182
-#: actions/newgroup.php:126 actions/profilesettings.php:208
-#: actions/register.php:199 actions/register.php:205
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
-
-#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176
-#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226
-msgid "Nickname not allowed."
-msgstr "Nickname not allowed."
-
-#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81
-#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Nickname of the user you want to follow"
-
-#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167
-#: actions/recoverpassword.php:186 actions/recoverpassword.php:191
-msgid "Nickname or email"
-msgstr "Nickname or e-mail"
-
-#: ../actions/deletenotice.php:59 actions/deletenotice.php:60
-#: actions/block.php:147 actions/deletenotice.php:118
-#: actions/deletenotice.php:116 actions/block.php:149
-#: actions/deletenotice.php:115 actions/groupblock.php:176
-#: actions/deletenotice.php:145
-msgid "No"
-msgstr "No"
-
-#: ../actions/imsettings.php:156 actions/imsettings.php:164
-#: actions/imsettings.php:279 actions/imsettings.php:285
-msgid "No Jabber ID."
-msgstr "No Jabber ID."
-
-#: ../actions/userauthorization.php:129 actions/userauthorization.php:136
-#: actions/userauthorization.php:153 actions/userauthorization.php:192
-#: actions/userauthorization.php:225
-msgid "No authorization request!"
-msgstr "No authorisation request!"
-
-#: ../actions/smssettings.php:181 actions/smssettings.php:189
-#: actions/smssettings.php:299 actions/smssettings.php:311
-#, fuzzy
-msgid "No carrier selected."
-msgstr "No carrier selected."
-
-#: ../actions/smssettings.php:316 actions/smssettings.php:324
-#: actions/smssettings.php:486 actions/smssettings.php:498
-msgid "No code entered"
-msgstr "No code entered"
-
-#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33
-#: actions/confirmaddress.php:75
-msgid "No confirmation code."
-msgstr "No confirmation code."
-
-#: ../actions/newnotice.php:44 actions/newmessage.php:53
-#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109
-#: actions/newnotice.php:126 classes/Command.php:223
-#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223
-#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144
-#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424
-msgid "No content!"
-msgstr "No content!"
-
-#: ../actions/emailsettings.php:174 actions/emailsettings.php:192
-#: actions/emailsettings.php:304 actions/emailsettings.php:311
-#: actions/emailsettings.php:319
-msgid "No email address."
-msgstr "No e-mail address."
-
-#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70
-msgid "No id."
-msgstr "No id."
-
-#: ../actions/emailsettings.php:271 actions/emailsettings.php:289
-#: actions/emailsettings.php:430 actions/emailsettings.php:437
-#: actions/smssettings.php:505 actions/smssettings.php:506
-#: actions/emailsettings.php:445 actions/smssettings.php:518
-msgid "No incoming email address."
-msgstr "No incoming e-mail address."
-
-#: ../actions/finishremotesubscribe.php:65
-#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68
-msgid "No nickname provided by remote server."
-msgstr "No nickname provided by remote server."
-
-#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27
-#: actions/avatarbynickname.php:59 actions/leavegroup.php:81
-#: actions/leavegroup.php:76
-msgid "No nickname."
-msgstr "No nickname."
-
-#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206
-#: ../actions/smssettings.php:229 actions/emailsettings.php:240
-#: actions/imsettings.php:214 actions/smssettings.php:237
-#: actions/emailsettings.php:363 actions/imsettings.php:345
-#: actions/smssettings.php:358 actions/emailsettings.php:370
-#: actions/emailsettings.php:378 actions/imsettings.php:351
-#: actions/smssettings.php:370
-msgid "No pending confirmation to cancel."
-msgstr "No pending confirmation to cancel."
-
-#: ../actions/smssettings.php:176 actions/smssettings.php:184
-#: actions/smssettings.php:294 actions/smssettings.php:306
-msgid "No phone number."
-msgstr "No phone number."
-
-#: ../actions/finishremotesubscribe.php:72
-#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75
-msgid "No profile URL returned by server."
-msgstr "No profile URL returned by server."
-
-#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232
-#: actions/recoverpassword.php:266 actions/recoverpassword.php:284
-#: actions/recoverpassword.php:287
-msgid "No registered email address for that user."
-msgstr "No registered e-mail address for that user."
-
-#: ../actions/userauthorization.php:49 actions/userauthorization.php:55
-#: actions/userauthorization.php:57
-msgid "No request found!"
-msgstr "No request found!"
-
-#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64
-#: actions/noticesearch.php:69 actions/peoplesearch.php:69
-#: actions/groupsearch.php:81 actions/noticesearch.php:104
-#: actions/peoplesearch.php:85 actions/noticesearch.php:117
-msgid "No results"
-msgstr "No results"
-
-#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32
-#: actions/avatarbynickname.php:64
-msgid "No size."
-msgstr "No size."
-
-#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136
-#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112
-#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118
-#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169
-#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108
-#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113
-msgid "No status found with that ID."
-msgstr "No status found with that ID."
-
-#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478
-#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442
-#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144
-msgid "No status with that ID found."
-msgstr "No status with that ID found."
-
-#: ../actions/openidsettings.php:135 actions/openidsettings.php:144
-#: actions/openidsettings.php:222
-msgid "No such OpenID."
-msgstr "No such OpenID."
-
-#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64
-#: actions/doc.php:69
-msgid "No such document."
-msgstr "No such document."
-
-#: ../actions/shownotice.php:32 ../actions/shownotice.php:83
-#: ../lib/deleteaction.php:30 actions/shownotice.php:32
-#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87
-#: lib/deleteaction.php:51 actions/deletenotice.php:52
-#: actions/shownotice.php:92
-msgid "No such notice."
-msgstr "No such notice."
-
-#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56
-#: actions/recoverpassword.php:62
-msgid "No such recovery code."
-msgstr "No such recovery code."
-
-#: ../actions/postnotice.php:56 actions/postnotice.php:57
-#: actions/postnotice.php:60
-msgid "No such subscription"
-msgstr "No such subscription"
-
-#: ../actions/all.php:34 ../actions/allrss.php:35
-#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40
-#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91
-#: ../actions/replies.php:57 ../actions/repliesrss.php:35
-#: ../actions/showstream.php:110 ../actions/userbyid.php:36
-#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57
-#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34
-#: actions/allrss.php:35 actions/avatarbynickname.php:43
-#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31
-#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100
-#: actions/replies.php:57 actions/repliesrss.php:35
-#: actions/showfavorites.php:34 actions/showstream.php:110
-#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35
-#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203
-#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36
-#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66
-#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64
-#: actions/foaf.php:41 actions/remotesubscribe.php:123
-#: actions/remotesubscribe.php:130 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/showfavorites.php:105
-#: actions/showstream.php:100 actions/userbyid.php:74
-#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73
-#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234
-#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82
-#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68
-#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185
-#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84
-#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72
-#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133
-#: lib/command.php:178 lib/command.php:227 lib/command.php:264
-#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112
-#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71
-#: lib/command.php:163 lib/command.php:311 lib/command.php:364
-#: lib/command.php:411 lib/command.php:466
-msgid "No such user."
-msgstr "No such user."
-
-#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217
-#: actions/recoverpassword.php:251 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:272
-msgid "No user with that email address or username."
-msgstr "No user with that e-mail address or username."
-
-#: ../lib/gallery.php:80 lib/gallery.php:85
-msgid "Nobody to show!"
-msgstr "Nobody to show!"
-
-#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60
-#: actions/recoverpassword.php:66
-msgid "Not a recovery code."
-msgstr "Not a recovery code."
-
-#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50
-#: scripts/maildaemon.php:53 scripts/maildaemon.php:52
-msgid "Not a registered user."
-msgstr "Not a registered user."
-
-#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247
-#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418
-#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476
-#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511
-#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648
-#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200
-#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 lib/api.php:963
-#: lib/api.php:991 lib/api.php:1101
-msgid "Not a supported data format."
-msgstr "Not a supported data format."
-
-#: ../actions/imsettings.php:167 actions/imsettings.php:175
-#: actions/imsettings.php:290 actions/imsettings.php:296
-msgid "Not a valid Jabber ID"
-msgstr "Not a valid Jabber ID"
-
-#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140
-#: lib/openid.php:143
-msgid "Not a valid OpenID."
-msgstr "Not a valid OpenID."
-
-#: ../actions/emailsettings.php:185 actions/emailsettings.php:203
-#: actions/emailsettings.php:315 actions/emailsettings.php:322
-#: actions/emailsettings.php:330
-msgid "Not a valid email address"
-msgstr "Not a valid e-mail address."
-
-#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152
-#: actions/register.php:189 actions/register.php:195 actions/register.php:201
-msgid "Not a valid email address."
-msgstr "Not a valid e-mail address."
-
-#: ../actions/profilesettings.php:91 ../actions/register.php:71
-#: actions/profilesettings.php:206 actions/register.php:78
-#: actions/editgroup.php:186 actions/newgroup.php:137
-#: actions/profilesettings.php:195 actions/register.php:161
-#: actions/editgroup.php:188 actions/newgroup.php:138
-#: actions/profilesettings.php:196 actions/register.php:198
-#: actions/apigroupcreate.php:228 actions/editgroup.php:189
-#: actions/newgroup.php:133 actions/profilesettings.php:211
-#: actions/register.php:204 actions/register.php:210
-msgid "Not a valid nickname."
-msgstr "Not a valid nickname."
-
-#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129
-#: actions/remotesubscribe.php:159
-msgid "Not a valid profile URL (incorrect services)."
-msgstr "Not a valid profile URL (incorrect services)."
-
-#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122
-#: actions/remotesubscribe.php:152
-msgid "Not a valid profile URL (no XRDS defined)."
-msgstr "Not a valid profile URL (no XRDS defined)."
-
-#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113
-#: actions/remotesubscribe.php:143
-msgid "Not a valid profile URL (no YADIS document)."
-msgstr "Not a valid profile URL (no YADIS document)."
-
-#: ../actions/avatar.php:95 actions/profilesettings.php:332
-#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91
-#: lib/imagefile.php:96
-msgid "Not an image or corrupt file."
-msgstr "Not an image or corrupt file."
-
-#: ../actions/finishremotesubscribe.php:51
-#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54
-msgid "Not authorized."
-msgstr "Not authorised."
-
-#: ../actions/finishremotesubscribe.php:38
-#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40
-#: actions/finishremotesubscribe.php:69
-msgid "Not expecting this response!"
-msgstr "Not expecting this response!"
-
-#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361
-#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327
-#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186
-#: actions/apistatusesupdate.php:193
-msgid "Not found"
-msgstr "Not found"
-
-#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33
-#: ../actions/newnotice.php:29 ../actions/subscribe.php:28
-#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38
-#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30
-#: actions/finishaddopenid.php:29 actions/logout.php:33
-#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28
-#: actions/unsubscribe.php:25 lib/deleteaction.php:38
-#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61
-#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71
-#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63
-#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60
-#: actions/unsubscribe.php:27 lib/deleteaction.php:66
-#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:61
-#: actions/makeadmin.php:61 actions/newnotice.php:88
-#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89
-#: actions/unsubscribe.php:52
-msgid "Not logged in."
-msgstr "Not logged in."
-
-#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124
-msgid "Not subscribed!."
-msgstr "Not subscribed!"
-
-#: ../actions/opensearch.php:35 actions/opensearch.php:35
-#: actions/opensearch.php:67
-msgid "Notice Search"
-msgstr "Notice Search"
-
-#: ../actions/showstream.php:82 actions/showstream.php:82
-#: actions/showstream.php:180 actions/showstream.php:187
-#: actions/showstream.php:192
-#, php-format
-msgid "Notice feed for %s"
-msgstr "Notice feed for %s"
-
-#: ../actions/shownotice.php:39 actions/shownotice.php:39
-#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100
-msgid "Notice has no profile"
-msgstr "Notice has no profile"
-
-#: ../actions/showstream.php:316 actions/showstream.php:331
-#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116
-#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118
-#: actions/conversation.php:149 lib/facebookaction.php:572
-#: lib/profileaction.php:206 actions/conversation.php:154
-msgid "Notices"
-msgstr "Notices"
-
-#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35
-#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57
-#: actions/twitapitags.php:69 actions/apitimelinetag.php:101
-#: actions/tag.php:66
-#, php-format
-msgid "Notices tagged with %s"
-msgstr "Notices tagged with %s"
-
-#: ../actions/password.php:39 actions/profilesettings.php:178
-#: actions/passwordsettings.php:97 actions/passwordsettings.php:103
-msgid "Old password"
-msgstr "Old password"
-
-#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90
-#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341
-#: lib/logingroupnav.php:81 lib/action.php:418
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
-#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
-msgid "OpenID Account Setup"
-msgstr "OpenID Account Setup"
-
-#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266
-#: lib/openid.php:269
-msgid "OpenID Auto-Submit"
-msgstr "OpenID Auto-Submit"
-
-#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140
-#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99
-#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68
-#: actions/finishaddopenid.php:170 actions/openidlogin.php:80
-#: actions/openidlogin.php:89
-msgid "OpenID Login"
-msgstr "OpenID Login"
-
-#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49
-#: actions/openidlogin.php:74 actions/openidsettings.php:50
-#: actions/openidlogin.php:102 actions/openidsettings.php:101
-#: actions/openidlogin.php:111
-msgid "OpenID URL"
-msgstr "OpenID URL"
-
-#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103
-#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109
-#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130
-#: actions/finishopenidlogin.php:129
-msgid "OpenID authentication cancelled."
-msgstr "OpenID authentication cancelled."
-
-#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107
-#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113
-#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134
-#: actions/finishopenidlogin.php:133
-#, php-format
-msgid "OpenID authentication failed: %s"
-msgstr "OpenID authentication failed: %s"
-
-#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142
-#: lib/openid.php:145
-#, php-format
-msgid "OpenID failure: %s"
-msgstr "OpenID failure: %s"
-
-#: ../actions/openidsettings.php:144 actions/openidsettings.php:153
-#: actions/openidsettings.php:231
-msgid "OpenID removed."
-msgstr "OpenID removed."
-
-#: ../actions/openidsettings.php:37 actions/openidsettings.php:37
-#: actions/openidsettings.php:59
-msgid "OpenID settings"
-msgstr "OpenID settings"
-
-#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180
-#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194
-msgid "Optionally add a personal message to the invitation."
-msgstr "Optionally add a personal message to the invitation."
-
-#: ../actions/avatar.php:84 actions/profilesettings.php:321
-#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80
-msgid "Partial upload."
-msgstr "Partial upload."
-
-#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102
-#: ../actions/register.php:153 ../lib/settingsaction.php:93
-#: actions/finishopenidlogin.php:96 actions/login.php:102
-#: actions/register.php:167 actions/finishopenidlogin.php:118
-#: actions/login.php:231 actions/register.php:372
-#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311
-#: actions/login.php:214 lib/facebookaction.php:315
-#: actions/finishopenidlogin.php:117 actions/register.php:418
-#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422
-#: lib/accountsettingsaction.php:114 actions/login.php:249
-#: actions/register.php:428
-msgid "Password"
-msgstr "Password"
-
-#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:335 actions/recoverpassword.php:353
-#: actions/recoverpassword.php:356
-msgid "Password and confirmation do not match."
-msgstr "Password and confirmation do not match."
-
-#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297
-#: actions/recoverpassword.php:331 actions/recoverpassword.php:349
-#: actions/recoverpassword.php:352
-msgid "Password must be 6 chars or more."
-msgstr "Password must be 6 chars or more."
-
-#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263
-#: actions/recoverpassword.php:267 actions/recoverpassword.php:269
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:301
-#: actions/recoverpassword.php:207 actions/recoverpassword.php:319
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
-msgid "Password recovery requested"
-msgstr "Password recovery requested"
-
-#: ../actions/password.php:89 ../actions/recoverpassword.php:313
-#: actions/profilesettings.php:408 actions/recoverpassword.php:326
-#: actions/passwordsettings.php:173 actions/recoverpassword.php:200
-#: actions/passwordsettings.php:178 actions/recoverpassword.php:208
-#: actions/passwordsettings.php:184 actions/recoverpassword.php:211
-#: actions/passwordsettings.php:191
-msgid "Password saved."
-msgstr "Password saved."
-
-#: ../actions/password.php:61 ../actions/register.php:88
-#: actions/profilesettings.php:380 actions/register.php:98
-#: actions/passwordsettings.php:145 actions/register.php:183
-#: actions/passwordsettings.php:150 actions/register.php:220
-#: actions/passwordsettings.php:156 actions/register.php:227
-#: actions/register.php:233
-msgid "Passwords don't match."
-msgstr "Passwords don't match."
-
-#: ../lib/searchaction.php:100 lib/searchaction.php:100
-#: lib/searchgroupnav.php:80
-msgid "People"
-msgstr "People"
-
-#: ../actions/opensearch.php:33 actions/opensearch.php:33
-#: actions/opensearch.php:64
-msgid "People Search"
-msgstr "People Search"
-
-#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33
-#: actions/peoplesearch.php:58
-msgid "People search"
-msgstr "People Search"
-
-#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98
-#: lib/personalgroupnav.php:99
-msgid "Personal"
-msgstr "Personal"
-
-#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178
-#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192
-msgid "Personal message"
-msgstr "Personal message"
-
-#: ../actions/smssettings.php:69 actions/smssettings.php:69
-#: actions/smssettings.php:128 actions/smssettings.php:140
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Phone number, no punctuation or spaces, with area code"
-
-#: ../actions/userauthorization.php:78
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
+msgid "%s is already an admin for group \"%s\"."
msgstr ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-#: ../actions/imsettings.php:73 actions/imsettings.php:74
-#: actions/imsettings.php:142 actions/imsettings.php:148
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Post a notice when my Jabber/GTalk status changes."
-
-#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67
-#: ../actions/smssettings.php:94 actions/emailsettings.php:86
-#: actions/imsettings.php:68 actions/smssettings.php:94
-#: actions/twittersettings.php:70 actions/emailsettings.php:147
-#: actions/imsettings.php:133 actions/smssettings.php:157
-#: actions/twittersettings.php:134 actions/twittersettings.php:137
-#: actions/emailsettings.php:153 actions/imsettings.php:139
-#: actions/smssettings.php:169
-msgid "Preferences"
-msgstr "Preferences"
-
-#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144
-#: ../actions/smssettings.php:163 actions/emailsettings.php:180
-#: actions/imsettings.php:152 actions/smssettings.php:171
-#: actions/emailsettings.php:286 actions/imsettings.php:258
-#: actions/othersettings.php:168 actions/smssettings.php:272
-#: actions/emailsettings.php:293 actions/othersettings.php:173
-#: actions/emailsettings.php:301 actions/imsettings.php:264
-#: actions/othersettings.php:180 actions/smssettings.php:284
-msgid "Preferences saved."
-msgstr "Preferences saved."
-
-#: ../actions/profilesettings.php:57 actions/profilesettings.php:90
-#: actions/profilesettings.php:129 actions/profilesettings.php:130
-#: actions/profilesettings.php:145
-msgid "Preferred language"
-msgstr "Preferred language"
-
-#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
-#: lib/action.php:715 lib/action.php:730
-msgid "Privacy"
-msgstr "Privacy"
-
-#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109
-#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155
-#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206
-#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268
-#: classes/Notice.php:293
-msgid "Problem saving notice."
-msgstr "Problem saving notice."
-
-#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60
-#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104
-#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109
-#: lib/accountsettingsaction.php:108
-msgid "Profile"
-msgstr "Profile"
-
-#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82
-#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133
-msgid "Profile URL"
-msgstr "Profile URL"
-
-#: ../actions/profilesettings.php:34 actions/profilesettings.php:32
-#: actions/profilesettings.php:58 actions/profilesettings.php:60
-msgid "Profile settings"
-msgstr "Profile settings"
-
-#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52
-#: actions/postnotice.php:52 actions/updateprofile.php:53
-#: actions/postnotice.php:55 actions/updateprofile.php:56
-#: actions/updateprofile.php:58
-msgid "Profile unknown"
-msgstr "Profile unknown"
-
-#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124
-msgid "Public Stream Feed"
-msgstr "Public Stream Feed"
-
-#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109
-#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79
-#: actions/public.php:120 actions/public.php:131
-msgid "Public timeline"
-msgstr "Public timeline"
-
-#: ../actions/imsettings.php:79 actions/imsettings.php:80
-#: actions/imsettings.php:153 actions/imsettings.php:159
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Publish a MicroID for my Jabber/GTalk address."
-
-#: ../actions/emailsettings.php:94 actions/emailsettings.php:101
-#: actions/emailsettings.php:178 actions/emailsettings.php:183
-#: actions/emailsettings.php:191
-msgid "Publish a MicroID for my email address."
-msgstr "Publish a MicroID for my e-mail address."
-
-#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75
-#: actions/tag.php:76
-msgid "Recent Tags"
-msgstr "Recent Tags"
-
-#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171
-#: actions/recoverpassword.php:190 actions/recoverpassword.php:197
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
-msgid "Recover"
-msgstr "Recover"
-
-#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161
-#: actions/recoverpassword.php:198 actions/recoverpassword.php:206
-#: actions/recoverpassword.php:209
-msgid "Recover password"
-msgstr "Recover password"
-
-#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67
-#: actions/recoverpassword.php:73
-msgid "Recovery code for unknown user."
-msgstr "Recovery code for unknown user."
-
-#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312
-#: actions/register.php:152 actions/register.php:207 lib/util.php:328
-#: actions/register.php:69 actions/register.php:436 lib/action.php:338
-#: lib/facebookaction.php:277 lib/logingroupnav.php:78
-#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279
-#: actions/register.php:108 actions/register.php:486 lib/action.php:440
-#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450
-#: lib/logingroupnav.php:85 actions/register.php:114 actions/register.php:502
-msgid "Register"
-msgstr "Register"
-
-#: ../actions/register.php:28 actions/register.php:28
-#: actions/finishopenidlogin.php:196 actions/register.php:90
-#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204
-#: actions/register.php:129 actions/register.php:135
-msgid "Registration not allowed."
-msgstr "Registration not allowed."
-
-#: ../actions/register.php:200 actions/register.php:214
-#: actions/register.php:67 actions/register.php:106 actions/register.php:112
-msgid "Registration successful"
-msgstr "Registration successful"
-
-#: ../actions/userauthorization.php:120 actions/userauthorization.php:127
-#: actions/userauthorization.php:144 actions/userauthorization.php:179
-#: actions/userauthorization.php:211
-msgid "Reject"
-msgstr "Reject"
-
-#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103
-#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107
-#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116
-#: actions/register.php:461 actions/login.php:225 actions/register.php:471
-#: actions/login.php:252 actions/register.php:477
-msgid "Remember me"
-msgstr "Remember me"
-
-#: ../actions/updateprofile.php:70 actions/updateprofile.php:71
-#: actions/updateprofile.php:74 actions/updateprofile.php:76
-msgid "Remote profile with no matching profile"
-msgstr "Remote profile with no matching profile"
-
-#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73
-#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112
-msgid "Remote subscribe"
-msgstr "Remote subscribe"
-
-#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75
-#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106
-#: ../actions/smssettings.php:50 ../actions/smssettings.php:84
-#: actions/emailsettings.php:48 actions/emailsettings.php:76
-#: actions/imsettings.php:49 actions/openidsettings.php:108
-#: actions/smssettings.php:50 actions/smssettings.php:84
-#: actions/twittersettings.php:59 actions/emailsettings.php:101
-#: actions/emailsettings.php:134 actions/imsettings.php:102
-#: actions/openidsettings.php:166 actions/smssettings.php:103
-#: actions/smssettings.php:146 actions/twittersettings.php:115
-#: actions/twittersettings.php:118 actions/emailsettings.php:107
-#: actions/emailsettings.php:140 actions/imsettings.php:108
-#: actions/smssettings.php:115 actions/smssettings.php:158
-msgid "Remove"
-msgstr "Remove"
-
-#: ../actions/openidsettings.php:68 actions/openidsettings.php:69
-#: actions/openidsettings.php:123
-msgid "Remove OpenID"
-msgstr "Remove OpenID"
-
-#: ../actions/openidsettings.php:73 actions/openidsettings.php:128
-msgid ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
+#: actions/makeadmin.php:132
+#, php-format
+msgid "Can't get membership record for %s in group %s"
msgstr ""
-"Removing your only OpenID would make it impossible to log in! If you need to "
-"remove it, add another OpenID first."
-#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103
-#: lib/personalgroupnav.php:104
-msgid "Replies"
-msgstr "Replies"
-
-#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56
-#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56
-#: actions/replies.php:116 actions/repliesrss.php:67
-#: lib/personalgroupnav.php:104 actions/replies.php:118
-#: actions/replies.php:117 lib/personalgroupnav.php:105
-#: actions/replies.php:125 actions/repliesrss.php:68
+#: actions/makeadmin.php:145
#, php-format
-msgid "Replies to %s"
-msgstr "Replies to %s"
-
-#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189
-#: actions/recoverpassword.php:223 actions/recoverpassword.php:240
-#: actions/recoverpassword.php:243
-msgid "Reset"
-msgstr "Reset"
-
-#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178
-#: actions/recoverpassword.php:197 actions/recoverpassword.php:205
-#: actions/recoverpassword.php:208
-msgid "Reset password"
-msgstr "Reset password"
-
-#: ../lib/settingsaction.php:99 lib/settingsaction.php:93
-#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107
-#: actions/subscriptions.php:125 actions/subscriptions.php:184
-#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
-msgid "SMS"
-msgstr "SMS"
-
-#: ../actions/smssettings.php:67 actions/smssettings.php:67
-#: actions/smssettings.php:126 actions/smssettings.php:138
-msgid "SMS Phone number"
-msgstr "SMS Phone number"
-
-#: ../actions/smssettings.php:33 actions/smssettings.php:33
-#: actions/smssettings.php:58
-msgid "SMS Settings"
-msgstr "SMS Settings"
-
-#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438
-msgid "SMS confirmation"
-msgstr "SMS confirmation"
-
-#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:222 actions/recoverpassword.php:237
-#: actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Same as password above"
-
-#: ../actions/register.php:156 actions/register.php:170
-#: actions/register.php:377 actions/register.php:423 actions/register.php:427
-#: actions/register.php:433
-msgid "Same as password above. Required."
-msgstr "Same as password above. Required."
-
-#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81
-#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100
-#: actions/emailsettings.php:104 actions/imsettings.php:82
-#: actions/profilesettings.php:101 actions/smssettings.php:100
-#: actions/twittersettings.php:83 actions/emailsettings.php:182
-#: actions/facebooksettings.php:114 actions/imsettings.php:157
-#: actions/othersettings.php:117 actions/profilesettings.php:150
-#: actions/smssettings.php:169 actions/subscriptions.php:124
-#: actions/tagother.php:152 actions/twittersettings.php:161
-#: lib/groupeditform.php:171 actions/emailsettings.php:187
-#: actions/subscriptions.php:126 actions/tagother.php:154
-#: actions/twittersettings.php:164 actions/othersettings.php:119
-#: actions/profilesettings.php:152 actions/subscriptions.php:185
-#: actions/twittersettings.php:180 lib/designsettings.php:256
-#: lib/groupeditform.php:196 actions/emailsettings.php:195
-#: actions/imsettings.php:163 actions/othersettings.php:126
-#: actions/profilesettings.php:167 actions/smssettings.php:181
-#: actions/subscriptions.php:203 lib/groupeditform.php:202
-msgid "Save"
-msgstr "Save"
-
-#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84
-#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448
-#: lib/action.php:459
-msgid "Search"
-msgstr "Search"
-
-#: ../actions/noticesearch.php:80 actions/noticesearch.php:85
-#: actions/noticesearch.php:127
-msgid "Search Stream Feed"
-msgstr "Search Stream Feed"
-
-#: ../actions/noticesearch.php:30 actions/noticesearch.php:30
-#: actions/noticesearch.php:57 actions/noticesearch.php:68
-#, php-format
-msgid ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
+msgid "Can't make %s an admin for group %s"
msgstr ""
-"Search for notices on %%site.name%% by their contents. Separate search terms "
-"by spaces; they must be 3 characters or more."
-
-#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-
-#: ../actions/smssettings.php:296 actions/smssettings.php:304
-#: actions/smssettings.php:457 actions/smssettings.php:469
-#, fuzzy
-msgid "Select a carrier"
-msgstr "Select a carrier"
-
-#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145
-#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182
-#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189
-#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157
-#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181
-#: lib/noticeform.php:208
-msgid "Send"
-msgstr "Send"
-
-#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82
-#: actions/emailsettings.php:74 actions/smssettings.php:82
-#: actions/emailsettings.php:132 actions/smssettings.php:145
-#: actions/emailsettings.php:138 actions/smssettings.php:157
-msgid "Send email to this address to post new notices."
-msgstr "Send e-mail to this address to post new notices."
-
-#: ../actions/emailsettings.php:88 actions/emailsettings.php:89
-#: actions/emailsettings.php:152 actions/emailsettings.php:158
-msgid "Send me notices of new subscriptions through email."
-msgstr "Send me notices of new subscriptions through e-mail."
-
-#: ../actions/imsettings.php:70 actions/imsettings.php:71
-#: actions/imsettings.php:137 actions/imsettings.php:143
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Send me notices through Jabber/GTalk."
-
-#: ../actions/smssettings.php:97 actions/smssettings.php:97
-#: actions/smssettings.php:162 actions/smssettings.php:174
-#, fuzzy
-msgid ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-msgstr ""
-"Send me notices through SMS; I understand I may incur exorbitant charges "
-"from my carrier."
-
-#: ../actions/imsettings.php:76 actions/imsettings.php:77
-#: actions/imsettings.php:147 actions/imsettings.php:153
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
-"Send me replies through Jabber/GTalk from people I'm not subscribed to."
-
-#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215
-#: lib/facebookaction.php:228 lib/facebookaction.php:230
-msgid "Settings"
-msgstr "Settings"
-
-#: ../actions/profilesettings.php:192 actions/profilesettings.php:307
-#: actions/profilesettings.php:319 actions/profilesettings.php:318
-#: actions/profilesettings.php:344
-msgid "Settings saved."
-msgstr "Settings saved."
-
-#: ../actions/tag.php:60 actions/tag.php:60
-msgid "Showing most popular tags from the last week"
-msgstr "Showing most popular tags from the last week"
-
-#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66
-#: actions/finishaddopenid.php:114
-msgid "Someone else already has this OpenID."
-msgstr "Someone else already has this OpenID."
-
-#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126
-#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135
-#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202
-msgid "Something weird happened."
-msgstr "Something weird happened."
-
-#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58
-#: scripts/maildaemon.php:61 scripts/maildaemon.php:60
-msgid "Sorry, no incoming email allowed."
-msgstr "Sorry, no incoming e-mail allowed."
-
-#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54
-#: scripts/maildaemon.php:57 scripts/maildaemon.php:56
-msgid "Sorry, that is not your incoming email address."
-msgstr "Sorry, that is not your incoming e-mail address."
-
-#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667
-#: lib/action.php:717 lib/action.php:732
-msgid "Source"
-msgstr "Source"
-
-#: ../actions/showstream.php:296 actions/showstream.php:311
-#: actions/showstream.php:476 actions/showgroup.php:375
-#: actions/showgroup.php:421 lib/profileaction.php:173
-#: actions/showgroup.php:429
-msgid "Statistics"
-msgstr "Statistics"
-
-#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246
-#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252
-#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290
-#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238
-#: actions/finishopenidlogin.php:318
-msgid "Stored OpenID not found."
-msgstr "Stored OpenID not found."
-
-#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188
-#: ../actions/showstream.php:197 actions/remotesubscribe.php:84
-#: actions/showstream.php:197 actions/showstream.php:206
-#: actions/remotesubscribe.php:113 actions/showstream.php:376
-#: lib/subscribeform.php:139 actions/showstream.php:345
-#: actions/remotesubscribe.php:137 actions/showstream.php:439
-#: lib/userprofile.php:321
-msgid "Subscribe"
-msgstr "Subscribe"
-
-#: ../actions/showstream.php:313 ../actions/subscribers.php:27
-#: actions/showstream.php:328 actions/subscribers.php:27
-#: actions/showstream.php:436 actions/showstream.php:498
-#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200
-#: lib/subgroupnav.php:90
-msgid "Subscribers"
-msgstr "Subscribers"
-
-#: ../actions/userauthorization.php:310 actions/userauthorization.php:322
-#: actions/userauthorization.php:338 actions/userauthorization.php:344
-#: actions/userauthorization.php:378 actions/userauthorization.php:247
-msgid "Subscription authorized"
-msgstr "Subscription authorised"
-
-#: ../actions/userauthorization.php:320 actions/userauthorization.php:332
-#: actions/userauthorization.php:349 actions/userauthorization.php:355
-#: actions/userauthorization.php:389 actions/userauthorization.php:259
-msgid "Subscription rejected"
-msgstr "Subscription rejected"
-
-#: ../actions/showstream.php:230 ../actions/showstream.php:307
-#: ../actions/subscriptions.php:27 actions/showstream.php:240
-#: actions/showstream.php:322 actions/subscriptions.php:27
-#: actions/showstream.php:407 actions/showstream.php:489
-#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191
-#: lib/subgroupnav.php:82
-msgid "Subscriptions"
-msgstr "Subscriptions"
-
-#: ../actions/avatar.php:87 actions/profilesettings.php:324
-#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83
-#: lib/imagefile.php:88 lib/mediafile.php:170
-msgid "System error uploading file."
-msgstr "System error uploading file."
-
-#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41
-#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297
-#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162
-#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149
-#: actions/tagother.php:209 lib/profilelist.php:160
-#: actions/profilesettings.php:123 actions/showstream.php:255
-#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108
-#: actions/profilesettings.php:138 actions/showstream.php:327
-#: lib/userprofile.php:209
-msgid "Tags"
-msgstr "Tags"
-
-#: ../lib/searchaction.php:104 lib/searchaction.php:104
-#: lib/designsettings.php:217
-msgid "Text"
-msgstr "Text"
-
-#: ../actions/noticesearch.php:34 actions/noticesearch.php:34
-#: actions/noticesearch.php:67 actions/noticesearch.php:78
-msgid "Text search"
-msgstr "Text search"
-
-#: ../actions/openidsettings.php:140 actions/openidsettings.php:149
-#: actions/openidsettings.php:227
-msgid "That OpenID does not belong to you."
-msgstr "That OpenID does not belong to you."
-
-#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52
-#: actions/confirmaddress.php:94
-msgid "That address has already been confirmed."
-msgstr "That address has already been confirmed."
-
-#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43
-#: actions/confirmaddress.php:85
-msgid "That confirmation code is not for you!"
-msgstr "That confirmation code is not for you!"
-
-#: ../actions/emailsettings.php:191 actions/emailsettings.php:209
-#: actions/emailsettings.php:328 actions/emailsettings.php:336
-msgid "That email address already belongs to another user."
-msgstr "That e-mail address already belongs to another user."
-
-#: ../actions/avatar.php:80 actions/profilesettings.php:317
-#: lib/imagefile.php:71
-msgid "That file is too big."
-msgstr "That file is too big."
-
-#: ../actions/imsettings.php:170 actions/imsettings.php:178
-#: actions/imsettings.php:293 actions/imsettings.php:299
-msgid "That is already your Jabber ID."
-msgstr "That is already your Jabber ID."
-
-#: ../actions/emailsettings.php:188 actions/emailsettings.php:206
-#: actions/emailsettings.php:318 actions/emailsettings.php:325
-#: actions/emailsettings.php:333
-msgid "That is already your email address."
-msgstr "That is already your e-mail address."
-
-#: ../actions/smssettings.php:188 actions/smssettings.php:196
-#: actions/smssettings.php:306 actions/smssettings.php:318
-msgid "That is already your phone number."
-msgstr "That is already your phone number."
-
-#: ../actions/imsettings.php:233 actions/imsettings.php:241
-#: actions/imsettings.php:381 actions/imsettings.php:387
-msgid "That is not your Jabber ID."
-msgstr "That is not your Jabber ID."
-
-#: ../actions/emailsettings.php:249 actions/emailsettings.php:267
-#: actions/emailsettings.php:397 actions/emailsettings.php:404
-#: actions/emailsettings.php:412
-msgid "That is not your email address."
-msgstr "That is not your e-mail address."
-
-#: ../actions/smssettings.php:257 actions/smssettings.php:265
-#: actions/smssettings.php:393 actions/smssettings.php:405
-msgid "That is not your phone number."
-msgstr "That is not your phone number."
-
-#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210
-#: actions/emailsettings.php:244 actions/imsettings.php:218
-#: actions/emailsettings.php:367 actions/imsettings.php:349
-#: actions/emailsettings.php:374 actions/emailsettings.php:382
-#: actions/imsettings.php:355
-msgid "That is the wrong IM address."
-msgstr "That is the wrong IM address."
-
-#: ../actions/smssettings.php:233 actions/smssettings.php:241
-#: actions/smssettings.php:362 actions/smssettings.php:374
-msgid "That is the wrong confirmation number."
-msgstr "That is the wrong confirmation number."
-
-#: ../actions/smssettings.php:191 actions/smssettings.php:199
-#: actions/smssettings.php:309 actions/smssettings.php:321
-msgid "That phone number already belongs to another user."
-msgstr "That phone number already belongs to another user."
-
-#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408
-#: actions/newnotice.php:49 actions/twitapistatuses.php:330
-#: actions/facebookhome.php:243 actions/twitapistatuses.php:276
-#: actions/newnotice.php:136 actions/twitapistatuses.php:294
-#: lib/facebookaction.php:485 actions/newnotice.php:166
-#: actions/twitapistatuses.php:251 lib/facebookaction.php:477
-#: scripts/maildaemon.php:70
-msgid "That's too long. Max notice size is 140 chars."
-msgstr "That's too long. Max notice size is 140 chars."
-
-#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72
-#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63
-#: actions/twitapiaccount.php:66
-msgid "That's too long. Max notice size is 255 chars."
-msgstr "That's too long. Max notice size is 255 chars."
-
-#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been confirmed for your account."
-msgstr "The address \"%s\" has been confirmed for your account."
-
-#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250
-#: ../actions/smssettings.php:274 actions/emailsettings.php:282
-#: actions/imsettings.php:258 actions/smssettings.php:282
-#: actions/emailsettings.php:416 actions/imsettings.php:402
-#: actions/smssettings.php:413 actions/emailsettings.php:423
-#: actions/emailsettings.php:431 actions/imsettings.php:408
-#: actions/smssettings.php:425
-msgid "The address was removed."
-msgstr "The address was removed."
-
-#: ../actions/userauthorization.php:312 actions/userauthorization.php:346
-#: actions/userauthorization.php:380
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"The subscription has been authorised, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorise the "
-"subscription. Your subscription token is:"
-
-#: ../actions/userauthorization.php:322 actions/userauthorization.php:357
-#: actions/userauthorization.php:391
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-
-#: ../actions/subscribers.php:35 actions/subscribers.php:35
-#: actions/subscribers.php:67
-#, php-format
-msgid "These are the people who listen to %s's notices."
-msgstr "These are the people who listen to %s's notices."
-
-#: ../actions/subscribers.php:33 actions/subscribers.php:33
-#: actions/subscribers.php:63
-msgid "These are the people who listen to your notices."
-msgstr "These are the people who listen to your notices."
-
-#: ../actions/subscriptions.php:35 actions/subscriptions.php:35
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose notices %s listens to."
-msgstr "These are the people whose notices %s listens to."
-
-#: ../actions/subscriptions.php:33 actions/subscriptions.php:33
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices you listen to."
-msgstr "These are the people whose notices you listen to."
-
-#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128
-#: actions/invite.php:130 actions/invite.php:136
-msgid ""
-"These people are already users and you were automatically subscribed to them:"
-msgstr ""
-"These people are already users and you were automatically subscribed to them:"
-
-#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. Please start again."
-msgstr "This confirmation code is too old. Please start again."
-
-#: ../lib/openid.php:195 lib/openid.php:206
-msgid ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-msgstr ""
-"This form should automatically submit itself. If not, click the submit "
-"button to go to your OpenID provider."
-
-#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61
-#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66
-#, php-format
-msgid ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-msgstr ""
-"This is the first time you've logged into %s so we must connect your OpenID "
-"to a local account. You can either create a new account, or connect with "
-"your existing account, if you have one."
-
-#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586
-#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108
-#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97
-#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436
-#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460
-#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90
-#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107
-msgid "This method requires a POST or DELETE."
-msgstr "This method requires a POST or DELETE."
-
-#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44
-#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63
-#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44
-#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53
-#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32
-#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54
-#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262
-#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124
-#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216
-#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88
-#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90
-#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91
-#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104
-#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91
-#: actions/apistatusesupdate.php:109
-#: actions/apiaccountupdateprofileimage.php:84
-msgid "This method requires a POST."
-msgstr "This method requires a POST."
-
-#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104
-msgid "This page is not available in a media type you accept"
-msgstr "This page is not available in a media type you accept"
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:138 actions/profilesettings.php:139
-#: actions/profilesettings.php:154
-msgid "Timezone"
-msgstr "Timezone"
-
-#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
-#: actions/profilesettings.php:211 actions/profilesettings.php:212
-#: actions/profilesettings.php:228
-msgid "Timezone not selected."
-msgstr "Timezone not selected."
-
-#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
-#: actions/remotesubscribe.php:98
-#, php-format
-msgid ""
-"To subscribe, you can [login](%%action.login%%), or [register](%%action."
-"register%%) a new account. If you already have an account on a [compatible "
-"microblogging site](%%doc.openmublog%%), enter your profile URL below."
-msgstr ""
-"To subscribe, you can [login](%%action.login%%), or [register](%%action."
-"register%%) a new account. If you already have an account on a [compatible "
-"microblogging site](%%doc.openmublog%%), enter your profile URL below."
-
-#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167
-#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139
-#: actions/apifriendshipsexists.php:103 actions/apifriendshipsexists.php:94
-msgid "Two user ids or screen_names must be supplied."
-msgstr "Two user ids or screen_names must be supplied."
-
-#: ../actions/profilesettings.php:48 ../actions/register.php:169
-#: actions/profilesettings.php:81 actions/register.php:183
-#: actions/profilesettings.php:109 actions/register.php:398
-#: actions/register.php:444 actions/profilesettings.php:117
-#: actions/register.php:448 actions/register.php:454
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL of your homepage, blog, or profile on another site"
-
-#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83
-#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "URL of your profile on another compatible microblogging service"
-
-#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110
-#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135
-#: actions/emailsettings.php:144 actions/imsettings.php:118
-#: actions/recoverpassword.php:39 actions/smssettings.php:143
-#: actions/twittersettings.php:108 actions/avatarsettings.php:258
-#: actions/emailsettings.php:242 actions/grouplogo.php:317
-#: actions/imsettings.php:214 actions/recoverpassword.php:44
-#: actions/smssettings.php:236 actions/twittersettings.php:302
-#: actions/avatarsettings.php:263 actions/emailsettings.php:247
-#: actions/grouplogo.php:324 actions/twittersettings.php:306
-#: actions/twittersettings.php:322 lib/designsettings.php:301
-#: actions/emailsettings.php:255 actions/grouplogo.php:319
-#: actions/imsettings.php:220 actions/smssettings.php:248
-#: actions/avatarsettings.php:277 lib/designsettings.php:304
-msgid "Unexpected form submission."
-msgstr "Unexpected form submission."
-
-#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289
-#: actions/recoverpassword.php:323 actions/recoverpassword.php:341
-#: actions/recoverpassword.php:344
-msgid "Unexpected password reset."
-msgstr "Unexpected password reset."
-
-#: ../index.php:57 index.php:57 actions/recoverpassword.php:202
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:213
-msgid "Unknown action"
-msgstr "Unknown action"
-
-#: ../actions/finishremotesubscribe.php:58
-#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61
-msgid "Unknown version of OMB protocol."
-msgstr "Unknown version of OMB protocol."
-
-#: ../lib/util.php:269 lib/util.php:285
-msgid ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-msgstr ""
-"Unless otherwise specified, contents of this site are copyright by the "
-"contributors and available under the "
-
-#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48
-#: actions/confirmaddress.php:90
-#, php-format
-msgid "Unrecognized address type %s"
-msgstr "Unrecognised address type %s"
-
-#: ../actions/showstream.php:209 actions/showstream.php:219
-#: lib/unsubscribeform.php:137
-msgid "Unsubscribe"
-msgstr "Unsubscribe"
-
-#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45
-#: actions/postnotice.php:45 actions/updateprofile.php:46
-#: actions/postnotice.php:48 actions/updateprofile.php:49
-#: actions/updateprofile.php:51
-msgid "Unsupported OMB version"
-msgstr "Unsupported OMB version"
-
-#: ../actions/avatar.php:105 actions/profilesettings.php:342
-#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100
-#: lib/imagefile.php:105
-msgid "Unsupported image file format."
-msgstr "Unsupported image file format."
-
-#: ../lib/settingsaction.php:100 lib/settingsaction.php:94
-#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116
-msgid "Updates by SMS"
-msgstr "Updates by SMS"
-
-#: ../lib/settingsaction.php:103 lib/settingsaction.php:97
-#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111
-msgid "Updates by instant messenger (IM)"
-msgstr "Updates by instant messenger (I.M.)"
-
-#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158
-#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134
-#: actions/twitapistatuses.php:94 actions/allrss.php:119
-#: actions/apitimelinefriends.php:121
-#, php-format
-msgid "Updates from %1$s and friends on %2$s!"
-msgstr "Updates from %1$s and friends on %2$s!"
-
-#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268
-#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213
-#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159
-#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125
-#: actions/userrss.php:92
-#, php-format
-msgid "Updates from %1$s on %2$s!"
-msgstr "Updates from %1$s on %2$s!"
-
-#: ../actions/avatar.php:68 actions/profilesettings.php:161
-#: actions/avatarsettings.php:162 actions/grouplogo.php:232
-#: actions/avatarsettings.php:165 actions/grouplogo.php:238
-#: actions/grouplogo.php:233
-msgid "Upload"
-msgstr "Upload"
-
-#: ../actions/avatar.php:27
-msgid ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site license, also. Use a picture that belongs to you and that you want to "
-"share."
-msgstr ""
-"Upload a new \"avatar\" (user image) here. You can't edit the picture after "
-"you upload it, so make sure it's more or less square. It must be under the "
-"site licence, also. Use a picture that belongs to you and that you want to "
-"share."
-
-#: ../lib/settingsaction.php:91
-msgid "Upload a new profile image"
-msgstr "Upload a new profile image"
-
-#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154
-#: actions/invite.php:156 actions/invite.php:162
-msgid ""
-"Use this form to invite your friends and colleagues to use this service."
-msgstr ""
-"Use this form to invite your friends and colleagues to use this service."
-
-#: ../actions/register.php:159 ../actions/register.php:162
-#: actions/register.php:173 actions/register.php:176 actions/register.php:382
-#: actions/register.php:386 actions/register.php:428 actions/register.php:432
-#: actions/register.php:436 actions/register.php:438 actions/register.php:442
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "Used only for updates, announcements, and password recovery"
-
-#: ../actions/finishremotesubscribe.php:86
-#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94
-msgid "User being listened to doesn't exist."
-msgstr "User being listened to doesn't exist."
-
-#: ../actions/all.php:41 ../actions/avatarbynickname.php:48
-#: ../actions/foaf.php:47 ../actions/replies.php:41
-#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82
-#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685
-#: ../actions/twitapiusers.php:82 actions/all.php:41
-#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41
-#: actions/showfavorites.php:41 actions/showstream.php:44
-#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68
-#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609
-#: actions/twitapiusers.php:87 lib/mailbox.php:50
-#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80
-#: actions/showstream.php:107 actions/twitapiaccount.php:70
-#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167
-#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55
-#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626
-#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179
-#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59
-#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57
-#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84
-#: actions/apiusershow.php:108 actions/apiaccountupdateprofileimage.php:124
-#: actions/apiaccountupdateprofileimage.php:130
-msgid "User has no profile."
-msgstr "User has no profile."
-
-#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80
-#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129
-msgid "User nickname"
-msgstr "User nickname"
-
-#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
-msgid "User not found."
-msgstr "User not found."
-
-#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
-#: actions/profilesettings.php:139 actions/profilesettings.php:140
-#: actions/profilesettings.php:155
-msgid "What timezone are you normally in?"
-msgstr "In which timezone are you?"
-
-#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141
-#: lib/noticeform.php:158
-#, php-format
-msgid "What's up, %s?"
-msgstr "What's up, %s?"
-
-#: ../actions/profilesettings.php:54 ../actions/register.php:175
-#: actions/profilesettings.php:87 actions/register.php:189
-#: actions/profilesettings.php:119 actions/register.php:410
-#: actions/register.php:456 actions/profilesettings.php:134
-#: actions/register.php:466 actions/register.php:472
-msgid "Where you are, like \"City, State (or Region), Country\""
-msgstr "Where you are, like \"City, State (or Region), Country\""
-
-#: ../actions/updateprofile.php:128 actions/updateprofile.php:129
-#: actions/updateprofile.php:132 actions/updateprofile.php:134
-#, php-format
-msgid "Wrong image type for '%s'"
-msgstr "Wrong image type for '%s'"
-
-#: ../actions/updateprofile.php:123 actions/updateprofile.php:124
-#: actions/updateprofile.php:127 actions/updateprofile.php:129
-#, php-format
-msgid "Wrong size image at '%s'"
-msgstr "Wrong size image at '%s'"
-
-#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72
-#: actions/deletenotice.php:64 actions/deletenotice.php:79
-#: actions/block.php:148 actions/deletenotice.php:122
-#: actions/deletenotice.php:141 actions/deletenotice.php:115
-#: actions/block.php:150 actions/deletenotice.php:116
-#: actions/groupblock.php:177 actions/deletenotice.php:146
-msgid "Yes"
-msgstr "Yes"
-
-#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64
-#: actions/finishaddopenid.php:112
-msgid "You already have this OpenID!"
-msgstr "You already have this OpenID!"
-
-#: ../actions/deletenotice.php:37 actions/deletenotice.php:37
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-
-#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31
-#: actions/recoverpassword.php:36
-msgid "You are already logged in!"
-msgstr "You are already logged in!"
-
-#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120
-#: actions/invite.php:122 actions/invite.php:128
-msgid "You are already subscribed to these users:"
-msgstr "You are already subscribed to these users:"
-
-#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128
-#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111
-msgid "You are not friends with the specified user."
-msgstr "You are not friends with the specified user."
-
-#: ../actions/password.php:27
-msgid "You can change your password here. Choose a good one!"
-msgstr "You can change your password here. Choose a good one!"
-
-#: ../actions/register.php:135 actions/register.php:145
-msgid "You can create a new account to start posting notices."
-msgstr "You can create a new account to start posting notices."
-
-#: ../actions/smssettings.php:28 actions/smssettings.php:28
-#: actions/smssettings.php:69
-#, php-format
-msgid "You can receive SMS messages through email from %%site.name%%."
-msgstr "You can receive SMS messages through e-mail from %%site.name%%."
-
-#: ../actions/openidsettings.php:86 actions/openidsettings.php:143
-msgid ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-msgstr ""
-"You can remove an OpenID from your account by clicking the button marked "
-"\"Remove\"."
-
-#: ../actions/imsettings.php:28 actions/imsettings.php:28
-#: actions/imsettings.php:70
-#, php-format
-msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-msgstr ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
-
-#: ../actions/profilesettings.php:27 actions/profilesettings.php:69
-#: actions/profilesettings.php:71
-msgid ""
-"You can update your personal profile info here so people know more about you."
-msgstr ""
-"You can update your personal profile info here so people know more about you."
-
-#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31
-#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85
-#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
-msgid "You can use the local subscription!"
-msgstr "You can use the local subscription!"
-
-#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61
-#: actions/finishopenidlogin.php:38 actions/register.php:68
-#: actions/finishopenidlogin.php:43 actions/register.php:149
-#: actions/register.php:186 actions/register.php:192 actions/register.php:198
-msgid "You can't register if you don't agree to the license."
-msgstr "You can't register if you don't agree to the licence."
-
-#: ../actions/updateprofile.php:63 actions/updateprofile.php:64
-#: actions/updateprofile.php:67 actions/updateprofile.php:69
-msgid "You did not send us that profile"
-msgstr "You did not send us that profile"
-
-#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send email to %2$s to post new messages.\n"
-"\n"
-"More email instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-msgstr ""
-"You have a new posting address on %1$s.\n"
-"\n"
-"Send e-mail to %2$s to post new messages.\n"
-"\n"
-"More e-mail instructions at %3$s.\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s"
-
-#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537
-#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486
-#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130
-msgid "You may not delete another user's status."
-msgstr "You may not delete another user's status."
-
-#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39
-#: actions/invite.php:41
-#, php-format
-msgid "You must be logged in to invite other users to use %s"
-msgstr "You must be logged in to invite other users to use %s"
-
-#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142
-#: actions/invite.php:144 actions/invite.php:150
-msgid ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-msgstr ""
-"You will be notified when your invitees accept the invitation and register "
-"on the site. Thanks for growing the community!"
-
-#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a new password below. "
-msgstr "You've been identified. Enter a new password below. "
-
-#: ../actions/openidlogin.php:67 actions/openidlogin.php:76
-#: actions/openidlogin.php:104 actions/openidlogin.php:113
-msgid "Your OpenID URL"
-msgstr "Your OpenID URL"
-
-#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188
-#: actions/recoverpassword.php:193
-msgid "Your nickname on this server, or your registered email address."
-msgstr "Your nickname on this server, or your registered e-mail address."
-
-#: ../actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-
-#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756
-#: lib/util.php:770 lib/util.php:816 lib/util.php:844
-msgid "a few seconds ago"
-msgstr "a few seconds ago"
-
-#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768
-#: lib/util.php:782 lib/util.php:828 lib/util.php:856
-#, php-format
-msgid "about %d days ago"
-msgstr "about %d days ago"
-
-#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764
-#: lib/util.php:778 lib/util.php:824 lib/util.php:852
-#, php-format
-msgid "about %d hours ago"
-msgstr "about %d hours ago"
-
-#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760
-#: lib/util.php:774 lib/util.php:820 lib/util.php:848
-#, php-format
-msgid "about %d minutes ago"
-msgstr "about %d minutes ago"
-
-#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772
-#: lib/util.php:786 lib/util.php:832 lib/util.php:860
-#, php-format
-msgid "about %d months ago"
-msgstr "about %d months ago"
-
-#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766
-#: lib/util.php:780 lib/util.php:826 lib/util.php:854
-msgid "about a day ago"
-msgstr "about a day ago"
-
-#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758
-#: lib/util.php:772 lib/util.php:818 lib/util.php:846
-msgid "about a minute ago"
-msgstr "about a minute ago"
-
-#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770
-#: lib/util.php:784 lib/util.php:830 lib/util.php:858
-msgid "about a month ago"
-msgstr "about a month ago"
-
-#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774
-#: lib/util.php:788 lib/util.php:834 lib/util.php:862
-msgid "about a year ago"
-msgstr "about a year ago"
-
-#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762
-#: lib/util.php:776 lib/util.php:822 lib/util.php:850
-msgid "about an hour ago"
-msgstr "about an hour ago"
-
-#: ../actions/showstream.php:423 ../lib/stream.php:132
-#: actions/showstream.php:441 lib/stream.php:99
-msgid "delete"
-msgstr "delete"
-
-#: ../actions/noticesearch.php:130 ../actions/showstream.php:408
-#: ../lib/stream.php:117 actions/noticesearch.php:136
-#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187
-msgid "in reply to..."
-msgstr "in reply to…"
-
-#: ../actions/noticesearch.php:137 ../actions/showstream.php:415
-#: ../lib/stream.php:124 actions/noticesearch.php:143
-#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194
-msgid "reply"
-msgstr "reply"
-
-#: ../actions/password.php:44 actions/profilesettings.php:183
-#: actions/passwordsettings.php:106 actions/passwordsettings.php:112
-msgid "same as password above"
-msgstr "same as password above"
-
-#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678
-#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596
-#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553
-#: actions/twitapistatuses.php:575
-msgid "unsupported file type"
-msgstr "unsupported file type"
-
-#: ../lib/util.php:1309 lib/util.php:1443
-msgid "« After"
-msgstr "← After"
-
-#: actions/deletenotice.php:74 actions/disfavor.php:43
-#: actions/emailsettings.php:127 actions/favor.php:45
-#: actions/finishopenidlogin.php:33 actions/imsettings.php:105
-#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36
-#: actions/openidsettings.php:123 actions/profilesettings.php:47
-#: actions/recoverpassword.php:282 actions/register.php:42
-#: actions/remotesubscribe.php:40 actions/smssettings.php:124
-#: actions/subscribe.php:44 actions/twittersettings.php:97
-#: actions/unsubscribe.php:41 actions/userauthorization.php:35
-#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77
-#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80
-#: actions/openidlogin.php:37 actions/recoverpassword.php:316
-#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43
-#: actions/avatarsettings.php:251 actions/emailsettings.php:229
-#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103
-#: actions/newmessage.php:133 actions/newnotice.php:96
-#: actions/openidsettings.php:188 actions/othersettings.php:136
-#: actions/passwordsettings.php:131 actions/profilesettings.php:172
-#: actions/register.php:113 actions/remotesubscribe.php:53
-#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166
-#: actions/twittersettings.php:294 actions/userauthorization.php:39
-#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66
-#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102
-#: actions/othersettings.php:138 actions/recoverpassword.php:334
-#: actions/register.php:153 actions/twittersettings.php:310
-#: lib/designsettings.php:291 actions/emailsettings.php:237
-#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105
-#: actions/newmessage.php:135 actions/newnotice.php:103
-#: actions/othersettings.php:145 actions/passwordsettings.php:137
-#: actions/profilesettings.php:187 actions/recoverpassword.php:337
-#: actions/register.php:159 actions/remotesubscribe.php:77
-#: actions/smssettings.php:228 actions/unsubscribe.php:69
-#: actions/userauthorization.php:52 actions/login.php:131
-#: actions/register.php:165 actions/avatarsettings.php:265
-#: lib/designsettings.php:294
-msgid "There was a problem with your session token. Try again, please."
-msgstr "There was a problem with your session token. Try again, please."
-
-#: actions/disfavor.php:55 actions/disfavor.php:81
-msgid "This notice is not a favorite!"
-msgstr "This notice is not a favourite!"
-
-#: actions/disfavor.php:63 actions/disfavor.php:87
-#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134
-msgid "Could not delete favorite."
-msgstr "Could not delete favourite."
-
-#: actions/disfavor.php:72 lib/favorform.php:140
-msgid "Favor"
-msgstr "Favour"
-
-#: actions/emailsettings.php:92 actions/emailsettings.php:157
-#: actions/emailsettings.php:163
-msgid "Send me email when someone adds my notice as a favorite."
-msgstr "Send me e-mail when someone adds my notice as a favourite."
-
-#: actions/emailsettings.php:95 actions/emailsettings.php:163
-#: actions/emailsettings.php:169
-msgid "Send me email when someone sends me a private message."
-msgstr "Send me e-mail when someone sends me a private message."
-
-#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
-#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
-#: actions/favor.php:79
-msgid "This notice is already a favorite!"
-msgstr "This notice is already a favourite!"
-
-#: actions/favor.php:60 actions/twitapifavorites.php:151
-#: classes/Command.php:132 actions/favor.php:86
-#: actions/twitapifavorites.php:125 classes/Command.php:152
-#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84
-#: actions/twitapifavorites.php:133 lib/command.php:145
-#: actions/apifavoritecreate.php:130 lib/command.php:176
-msgid "Could not create favorite."
-msgstr "Could not create favourite."
-
-#: actions/favor.php:70
-msgid "Disfavor"
-msgstr "Disfavour"
-
-#: actions/favoritesrss.php:60 actions/showfavorites.php:47
-#: actions/favoritesrss.php:100 actions/showfavorites.php:77
-#: actions/favoritesrss.php:110
-#, php-format
-msgid "%s favorite notices"
-msgstr "%s's favorite notices"
-
-#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
-#: actions/favoritesrss.php:114
-#, php-format
-msgid "Feed of favorite notices of %s"
-msgstr "Feed of favourite notices of %s"
-
-#: actions/inbox.php:28 actions/inbox.php:59
-#, php-format
-msgid "Inbox for %s - page %d"
-msgstr "Inbox for %s - page %d"
-
-#: actions/inbox.php:30 actions/inbox.php:62
-#, php-format
-msgid "Inbox for %s"
-msgstr "Inbox for %s"
-
-#: actions/inbox.php:53 actions/inbox.php:115
-msgid "This is your inbox, which lists your incoming private messages."
-msgstr "This is your inbox, which lists your incoming private messages."
-
-#: actions/invite.php:178 actions/invite.php:213
-#, php-format
-msgid ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-msgstr ""
-"%1$s has invited you to join them on %2$s (%3$s).\n"
-"\n"
-
-#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
-#: actions/register.php:416
-msgid "Automatically login in the future; "
-msgstr "Automatically login in the future; "
-
-#: actions/login.php:122 actions/login.php:264
-msgid "For security reasons, please re-enter your "
-msgstr "For security reasons, please re-enter your "
-
-#: actions/login.php:126 actions/login.php:268
-msgid "Login with your username and password. "
-msgstr "Login with your username and password. "
-
-#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130
-#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:145
-msgid "That's too long. Max message size is 140 chars."
-msgstr "That's too long. Max message size is 140 chars."
-
-#: actions/newmessage.php:65 actions/newmessage.php:128
-#: actions/newmessage.php:155 actions/newmessage.php:158
-msgid "No recipient specified."
-msgstr "No recipient specified."
-
-#: actions/newmessage.php:68 actions/newmessage.php:113
-#: classes/Command.php:206 actions/newmessage.php:131
-#: actions/newmessage.php:168 classes/Command.php:237
-#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237
-#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161
-#: lib/command.php:367
-msgid "You can't send a message to this user."
-msgstr "You can't send a message to this user."
-
-#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146
-#: classes/Command.php:209 actions/twitapidirect_messages.php:158
-#: classes/Command.php:240 actions/newmessage.php:161
-#: actions/twitapidirect_messages.php:167 lib/command.php:240
-#: actions/twitapidirect_messages.php:163 lib/command.php:233
-#: actions/newmessage.php:164 lib/command.php:370
-msgid ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
-"Don't send a message to yourself; just say it to yourself quietly instead."
-
-#: actions/newmessage.php:108 actions/microsummary.php:62
-#: actions/newmessage.php:163 actions/newmessage.php:114
-#: actions/newmessage.php:116 actions/remotesubscribe.php:154
-msgid "No such user"
-msgstr "No such user"
-
-#: actions/newmessage.php:117 actions/newmessage.php:67
-#: actions/newmessage.php:71 actions/newmessage.php:231
-msgid "New message"
-msgstr "New message"
-
-#: actions/noticesearch.php:95 actions/noticesearch.php:146
-msgid "Notice without matching profile"
-msgstr "Notice without matching profile"
-
-#: actions/openidsettings.php:28 actions/openidsettings.php:70
-#, php-format
-msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
-msgstr "[OpenID](%%doc.openid%%) lets you log into many sites "
-
-#: actions/openidsettings.php:46 actions/openidsettings.php:96
-msgid "If you want to add an OpenID to your account, "
-msgstr "If you want to add an OpenID to your account, "
-
-#: actions/openidsettings.php:74
-msgid "Removing your only OpenID would make it impossible to log in! "
-msgstr "Removing your only OpenID would make it impossible to log in! "
-
-#: actions/openidsettings.php:87 actions/openidsettings.php:143
-msgid "You can remove an OpenID from your account "
-msgstr "You can remove an OpenID from your account "
-
-#: actions/outbox.php:28 actions/outbox.php:58
-#, php-format
-msgid "Outbox for %s - page %d"
-msgstr "Outbox for %s - page %d"
-
-#: actions/outbox.php:30 actions/outbox.php:61
-#, php-format
-msgid "Outbox for %s"
-msgstr "Outbox for %s"
-
-#: actions/outbox.php:53 actions/outbox.php:116
-msgid "This is your outbox, which lists private messages you have sent."
-msgstr "This is your outbox, which lists private messages you have sent."
-
-#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
-#, php-format
-msgid ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-msgstr ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-
-#: actions/profilesettings.php:27 actions/profilesettings.php:69
-msgid "You can update your personal profile info here "
-msgstr "You can update your personal profile info here "
-
-#: actions/profilesettings.php:115 actions/remotesubscribe.php:320
-#: actions/userauthorization.php:159 actions/userrss.php:76
-#: actions/avatarsettings.php:104 actions/avatarsettings.php:179
-#: actions/grouplogo.php:177 actions/remotesubscribe.php:367
-#: actions/userauthorization.php:176 actions/userrss.php:82
-#: actions/avatarsettings.php:106 actions/avatarsettings.php:182
-#: actions/grouplogo.php:183 actions/remotesubscribe.php:366
-#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
-#: actions/userrss.php:103 actions/grouplogo.php:178
-#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
-msgid "User without matching profile"
-msgstr "User without matching profile"
-
-#: actions/recoverpassword.php:91 actions/recoverpassword.php:97
-msgid "This confirmation code is too old. "
-msgstr "This confirmation code is too old. "
-
-#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
-msgid "If you've forgotten or lost your"
-msgstr "If you've forgotten or lost your"
-
-#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
-msgid "You've been identified. Enter a "
-msgstr "You've been identified. Enter a "
-
-#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
-msgid "Your nickname on this server, "
-msgstr "Your nickname on this server, "
-
-#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
-msgid "Instructions for recovering your password "
-msgstr "Instructions for recovering your password "
-
-#: actions/recoverpassword.php:327 actions/recoverpassword.php:361
-msgid "New password successfully saved. "
-msgstr "New password successfully saved. "
-
-#: actions/register.php:95 actions/register.php:180
-#: actions/passwordsettings.php:147 actions/register.php:217
-#: actions/passwordsettings.php:153 actions/register.php:224
-#: actions/register.php:230
-msgid "Password must be 6 or more characters."
-msgstr "Password must be 6 or more characters."
-
-#: actions/register.php:216
-#, php-format
-msgid ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to..."
-msgstr ""
-"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
-"want to…"
-
-#: actions/register.php:227
-msgid "(You should receive a message by email momentarily, with "
-msgstr "(You should receive a message by e-mail momentarily, with "
-
-#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
-#, php-format
-msgid "To subscribe, you can [login](%%action.login%%),"
-msgstr "To subscribe, you can [login](%%action.login%%),"
-
-#: actions/showfavorites.php:61 actions/showfavorites.php:145
-#: actions/showfavorites.php:147
-#, php-format
-msgid "Feed for favorites of %s"
-msgstr "Feed for favourites of %s"
-
-#: actions/showfavorites.php:84 actions/twitapifavorites.php:85
-#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
-#: actions/showfavorites.php:179 actions/showfavorites.php:209
-#: actions/showfavorites.php:132
-msgid "Could not retrieve favorite notices."
-msgstr "Could not retrieve favourite notices."
-
-#: actions/showmessage.php:33 actions/showmessage.php:81
-msgid "No such message."
-msgstr "No such message."
-
-#: actions/showmessage.php:42 actions/showmessage.php:98
-msgid "Only the sender and recipient may read this message."
-msgstr "Only the sender and recipient may read this message."
-
-#: actions/showmessage.php:61 actions/showmessage.php:108
-#, php-format
-msgid "Message to %1$s on %2$s"
-msgstr "Message to %1$s on %2$s"
-
-#: actions/showmessage.php:66 actions/showmessage.php:113
-#, php-format
-msgid "Message from %1$s on %2$s"
-msgstr "Message from %1$s on %2$s"
-
-#: actions/showstream.php:154
-msgid "Send a message"
-msgstr "Send a message"
-
-#: actions/smssettings.php:312 actions/smssettings.php:464
-#, fuzzy, php-format
-msgid "Mobile carrier for your phone. "
-msgstr "Mobile carrier for your phone. "
-
-#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68
-#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53
-#: actions/apidirectmessage.php:101
-#, php-format
-msgid "Direct messages to %s"
-msgstr "Direct messages to %s"
-
-#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69
-#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54
-#: actions/apidirectmessage.php:105
-#, php-format
-msgid "All the direct messages sent to %s"
-msgstr "All the direct messages sent to %s"
-
-#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73
-#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59
-msgid "Direct Messages You've Sent"
-msgstr "Direct Messages You've Sent"
-
-#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74
-#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60
-#: actions/apidirectmessage.php:93
-#, php-format
-msgid "All the direct messages sent from %s"
-msgstr "All the direct messages sent from %s"
-
-#: actions/twitapidirect_messages.php:128
-#: actions/twitapidirect_messages.php:137
-#: actions/twitapidirect_messages.php:146
-#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126
-msgid "No message text!"
-msgstr "No message text!"
-
-#: actions/twitapidirect_messages.php:138
-#: actions/twitapidirect_messages.php:150
-#: actions/twitapidirect_messages.php:159
-#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146
-msgid "Recipient user not found."
-msgstr "Recipient user not found."
-
-#: actions/twitapidirect_messages.php:141
-#: actions/twitapidirect_messages.php:153
-#: actions/twitapidirect_messages.php:162
-#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr "Can't send direct messages to users who aren't your friend."
-
-#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
-#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
-#: actions/apitimelinefavorites.php:107
-#, php-format
-msgid "%s / Favorites from %s"
-msgstr "%s / Favourites from %s"
-
-#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
-#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
-#: actions/apitimelinefavorites.php:119
-#, php-format
-msgid "%s updates favorited by %s / %s."
-msgstr "%s updates favourited by %s / %s."
-
-#: actions/twitapifavorites.php:187 lib/mail.php:275
-#: actions/twitapifavorites.php:164 lib/mail.php:553
-#: actions/twitapifavorites.php:170 lib/mail.php:554
-#: actions/twitapifavorites.php:221
-#, php-format
-msgid "%s added your notice as a favorite"
-msgstr "%s added your notice as a favourite"
-
-#: actions/twitapifavorites.php:188 lib/mail.php:276
-#: actions/twitapifavorites.php:165
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-msgstr ""
-"%1$s just added your notice from %2$s as one of their favourites.\n"
-"\n"
-
-#: actions/twittersettings.php:27
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-msgstr ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-
-#: actions/twittersettings.php:41 actions/twittersettings.php:60
-#: actions/twittersettings.php:61
-msgid "Twitter settings"
-msgstr "Twitter settings"
-
-#: actions/twittersettings.php:48 actions/twittersettings.php:105
-#: actions/twittersettings.php:106
-msgid "Twitter Account"
-msgstr "Twitter Account"
-
-#: actions/twittersettings.php:56 actions/twittersettings.php:113
-#: actions/twittersettings.php:114
-msgid "Current verified Twitter account."
-msgstr "Current verified Twitter account."
-
-#: actions/twittersettings.php:63
-msgid "Twitter Username"
-msgstr "Twitter Username"
-
-#: actions/twittersettings.php:65 actions/twittersettings.php:123
-#: actions/twittersettings.php:126
-msgid "No spaces, please."
-msgstr "No spaces, please."
-
-#: actions/twittersettings.php:67
-msgid "Twitter Password"
-msgstr "Twitter Password"
-
-#: actions/twittersettings.php:72 actions/twittersettings.php:139
-#: actions/twittersettings.php:142
-msgid "Automatically send my notices to Twitter."
-msgstr "Automatically send my notices to Twitter."
-
-#: actions/twittersettings.php:75 actions/twittersettings.php:146
-#: actions/twittersettings.php:149
-msgid "Send local \"@\" replies to Twitter."
-msgstr "Send local \"@\" replies to Twitter."
-
-#: actions/twittersettings.php:78 actions/twittersettings.php:153
-#: actions/twittersettings.php:156
-msgid "Subscribe to my Twitter friends here."
-msgstr "Subscribe to my Twitter friends here."
-
-#: actions/twittersettings.php:122 actions/twittersettings.php:331
-#: actions/twittersettings.php:348
-msgid ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-msgstr ""
-"Username must have only numbers, upper- and lowercase letters, and "
-"underscore (_). 15 chars max."
-
-#: actions/twittersettings.php:128 actions/twittersettings.php:334
-#: actions/twittersettings.php:338 actions/twittersettings.php:355
-msgid "Could not verify your Twitter credentials!"
-msgstr "Could not verify your Twitter credentials!"
-
-#: actions/twittersettings.php:137
-#, php-format
-msgid "Unable to retrieve account information for \"%s\" from Twitter."
-msgstr "Unable to retrieve account information for \"%s\" from Twitter."
-
-#: actions/twittersettings.php:151 actions/twittersettings.php:170
-#: actions/twittersettings.php:348 actions/twittersettings.php:368
-#: actions/twittersettings.php:352 actions/twittersettings.php:372
-#: actions/twittersettings.php:369 actions/twittersettings.php:389
-msgid "Unable to save your Twitter settings!"
-msgstr "Unable to save your Twitter settings!"
-
-#: actions/twittersettings.php:174 actions/twittersettings.php:376
-#: actions/twittersettings.php:380 actions/twittersettings.php:399
-msgid "Twitter settings saved."
-msgstr "Twitter settings saved."
-
-#: actions/twittersettings.php:192 actions/twittersettings.php:395
-#: actions/twittersettings.php:399 actions/twittersettings.php:418
-msgid "That is not your Twitter account."
-msgstr "That is not your Twitter account."
-
-#: actions/twittersettings.php:200 actions/twittersettings.php:208
-#: actions/twittersettings.php:403 actions/twittersettings.php:407
-#: actions/twittersettings.php:426
-msgid "Couldn't remove Twitter user."
-msgstr "Couldn't remove Twitter user."
-
-#: actions/twittersettings.php:212 actions/twittersettings.php:407
-#: actions/twittersettings.php:411 actions/twittersettings.php:430
-msgid "Twitter account removed."
-msgstr "Twitter account removed."
-
-#: actions/twittersettings.php:225 actions/twittersettings.php:239
-#: actions/twittersettings.php:428 actions/twittersettings.php:439
-#: actions/twittersettings.php:453 actions/twittersettings.php:432
-#: actions/twittersettings.php:443 actions/twittersettings.php:457
-#: actions/twittersettings.php:452 actions/twittersettings.php:463
-#: actions/twittersettings.php:477
-msgid "Couldn't save Twitter preferences."
-msgstr "Couldn't save Twitter preferences."
-
-#: actions/twittersettings.php:245 actions/twittersettings.php:461
-#: actions/twittersettings.php:465 actions/twittersettings.php:485
-msgid "Twitter preferences saved."
-msgstr "Twitter preferences saved."
-
-#: actions/userauthorization.php:84 actions/userauthorization.php:86
-msgid "Please check these details to make sure "
-msgstr "Please check these details to make sure "
-
-#: actions/userauthorization.php:324 actions/userauthorization.php:340
-msgid "The subscription has been authorized, but no "
-msgstr "The subscription has been authorised, but no "
-
-#: actions/userauthorization.php:334 actions/userauthorization.php:351
-msgid "The subscription has been rejected, but no "
-msgstr "The subscription has been rejected, but no "
-
-#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
-#: lib/channel.php:138 lib/channel.php:158
-msgid "Command results"
-msgstr "Command results"
-
-#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
-msgid "Command complete"
-msgstr "Command complete"
-
-#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
-msgid "Command failed"
-msgstr "Command failed"
-
-#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
-msgid "Sorry, this command is not yet implemented."
-msgstr "Sorry, this command is not yet implemented."
-
-#: classes/Command.php:96 classes/Command.php:113
-#, php-format
-msgid "Subscriptions: %1$s\n"
-msgstr "Subscriptions: %1$s\n"
-
-#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145
-#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
-#: lib/command.php:138 lib/command.php:269 lib/command.php:168
-#: lib/command.php:416 lib/command.php:471
-msgid "User has no last notice"
-msgstr "User has no last notice"
-
-#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
-#: lib/command.php:159 lib/command.php:190
-msgid "Notice marked as fave."
-msgstr "Notice marked as fave."
-
-#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189
-#: lib/command.php:182 lib/command.php:315
-#, php-format
-msgid "%1$s (%2$s)"
-msgstr "%1$s (%2$s)"
-
-#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
-#: lib/command.php:185 lib/command.php:318
-#, php-format
-msgid "Fullname: %s"
-msgstr "Fullname: %s"
-
-#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
-#: lib/command.php:188 lib/command.php:321
-#, php-format
-msgid "Location: %s"
-msgstr "Location: %s"
-
-#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198
-#: lib/command.php:191 lib/command.php:324
-#, php-format
-msgid "Homepage: %s"
-msgstr "Homepage: %s"
-
-#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201
-#: lib/command.php:194 lib/command.php:327
-#, php-format
-msgid "About: %s"
-msgstr "About: %s"
-
-#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228
-#: lib/command.php:221
-#, php-format
-msgid "Message too long - maximum is 140 characters, you sent %d"
-msgstr "Message too long - maximum is 140 characters, you sent %d"
-
-#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245
-#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185
-#: lib/command.php:375
-#, php-format
-msgid "Direct message to %s sent"
-msgstr "Direct message to %s sent"
-
-#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247
-#: lib/command.php:240 lib/command.php:377
-msgid "Error sending direct message."
-msgstr "Error sending direct message."
-
-#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
-#: lib/command.php:293 lib/command.php:495
-msgid "Specify the name of the user to subscribe to"
-msgstr "Specify the name of the user to subscribe to"
-
-#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
-#: lib/command.php:300 lib/command.php:502
-#, php-format
-msgid "Subscribed to %s"
-msgstr "Subscribed to %s"
-
-#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
-#: lib/command.php:321 lib/command.php:523
-msgid "Specify the name of the user to unsubscribe from"
-msgstr "Specify the name of the user to unsubscribe from"
-
-#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
-#: lib/command.php:328 lib/command.php:530
-#, php-format
-msgid "Unsubscribed from %s"
-msgstr "Unsubscribed from %s"
-
-#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353
-#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
-#: lib/command.php:346 lib/command.php:369 lib/command.php:548
-#: lib/command.php:571
-msgid "Command not yet implemented."
-msgstr "Command not yet implemented."
-
-#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356
-#: lib/command.php:349 lib/command.php:551
-msgid "Notification off."
-msgstr "Notification off."
-
-#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358
-#: lib/command.php:351 lib/command.php:553
-msgid "Can't turn off notification."
-msgstr "Can't turn off notification."
-
-#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379
-#: lib/command.php:372 lib/command.php:574
-msgid "Notification on."
-msgstr "Notification on."
-
-#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381
-#: lib/command.php:374 lib/command.php:576
-msgid "Can't turn on notification."
-msgstr "Can't turn on notification."
-
-#: classes/Command.php:344 classes/Command.php:392
-msgid "Commands:\n"
-msgstr "Commands:\n"
-
-#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
-msgid "Could not insert message."
-msgstr "Could not insert message."
-
-#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65
-msgid "Could not update message with new URI."
-msgstr "Could not update message with new URI."
-
-#: lib/gallery.php:46
-msgid "User without matching profile in system."
-msgstr "User without matching profile in system."
-
-#: lib/mail.php:147 lib/mail.php:289
-#, php-format
-msgid ""
-"You have a new posting address on %1$s.\n"
-"\n"
-msgstr ""
-"You have a new posting address on %1$s.\n"
-"\n"
-
-#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509
-#, php-format
-msgid "New private message from %s"
-msgstr "New private message from %s"
-
-#: lib/mail.php:253 lib/mail.php:512
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-msgstr ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-
-#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91
-msgid "Only the user can read their own mailboxes."
-msgstr "Only the user can read their own mailboxes."
-
-#: lib/openid.php:195 lib/openid.php:203
-msgid "This form should automatically submit itself. "
-msgstr "This form should automatically submit itself. "
-
-#: lib/personal.php:65 lib/personalgroupnav.php:113
-#: lib/personalgroupnav.php:114
-msgid "Favorites"
-msgstr "Favourites"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: actions/favoritesrss.php:110 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111
-#, php-format
-msgid "%s's favorite notices"
-msgstr "%s's favourite notices"
-
-#: lib/personal.php:66 lib/personalgroupnav.php:114
-#: lib/personalgroupnav.php:115
-msgid "User"
-msgstr "User"
-
-#: lib/personal.php:75 lib/personalgroupnav.php:123
-#: lib/personalgroupnav.php:124
-msgid "Inbox"
-msgstr "Inbox"
-
-#: lib/personal.php:76 lib/personalgroupnav.php:124
-#: lib/personalgroupnav.php:125
-msgid "Your incoming messages"
-msgstr "Your incoming messages"
-
-#: lib/personal.php:80 lib/personalgroupnav.php:128
-#: lib/personalgroupnav.php:129
-msgid "Outbox"
-msgstr "Outbox"
-
-#: lib/personal.php:81 lib/personalgroupnav.php:129
-#: lib/personalgroupnav.php:130
-msgid "Your sent messages"
-msgstr "Your sent messages"
-
-#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
-msgid "Twitter"
-msgstr "Twitter"
-
-#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
-msgid "Twitter integration options"
-msgstr "Twitter integration options"
-
-#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
-#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
-#: lib/noticelist.php:433 lib/messageform.php:146
-msgid "To"
-msgstr "To"
-
-#: scripts/maildaemon.php:45 scripts/maildaemon.php:48
-#: scripts/maildaemon.php:47
-msgid "Could not parse message."
-msgstr "Could not parse message."
-
-#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66
-#: actions/facebookhome.php:161 actions/all.php:48
-#: actions/facebookhome.php:156 actions/all.php:84
-#, php-format
-msgid "%s and friends, page %d"
-msgstr "%s and friends, page %d"
-
-#: actions/avatarsettings.php:76
-msgid "You can upload your personal avatar."
-msgstr "You can upload your personal avatar."
-
-#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
-#: actions/grouplogo.php:250 actions/avatarsettings.php:119
-#: actions/avatarsettings.php:194 actions/grouplogo.php:256
-#: actions/grouplogo.php:251
-msgid "Avatar settings"
-msgstr "Avatar settings"
-
-#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
-#: actions/grouplogo.php:198 actions/grouplogo.php:258
-#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
-#: actions/grouplogo.php:204 actions/grouplogo.php:264
-#: actions/grouplogo.php:199 actions/grouplogo.php:259
-msgid "Original"
-msgstr "Original"
-
-#: actions/avatarsettings.php:139 actions/avatarsettings.php:211
-#: actions/grouplogo.php:209 actions/grouplogo.php:270
-#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
-#: actions/grouplogo.php:215 actions/grouplogo.php:276
-#: actions/grouplogo.php:210 actions/grouplogo.php:271
-msgid "Preview"
-msgstr "Preview"
-
-#: actions/avatarsettings.php:225 actions/grouplogo.php:284
-#: actions/avatarsettings.php:228 actions/grouplogo.php:291
-#: actions/grouplogo.php:286
-msgid "Crop"
-msgstr "Crop"
-
-#: actions/avatarsettings.php:248 actions/deletenotice.php:133
-#: actions/emailsettings.php:224 actions/grouplogo.php:307
-#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100
-#: actions/newnotice.php:96 actions/openidsettings.php:188
-#: actions/othersettings.php:136 actions/passwordsettings.php:131
-#: actions/profilesettings.php:172 actions/register.php:113
-#: actions/remotesubscribe.php:53 actions/smssettings.php:216
-#: actions/subedit.php:38 actions/twittersettings.php:290
-#: actions/userauthorization.php:39
-msgid "There was a problem with your session token. "
-msgstr "There was a problem with your session token. "
-
-#: actions/avatarsettings.php:303 actions/grouplogo.php:360
-#: actions/avatarsettings.php:308 actions/avatarsettings.php:322
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Pick a square area of the image to be your avatar"
-
-#: actions/avatarsettings.php:327 actions/grouplogo.php:384
-#: actions/avatarsettings.php:323 actions/grouplogo.php:382
-#: actions/grouplogo.php:377 actions/avatarsettings.php:337
-msgid "Lost our file data."
-msgstr "Lost our file data."
-
-#: actions/avatarsettings.php:334 actions/grouplogo.php:391
-#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113
-#: lib/imagefile.php:118
-msgid "Lost our file."
-msgstr "Lost our file."
-
-#: actions/avatarsettings.php:349 actions/avatarsettings.php:383
-#: actions/grouplogo.php:406 actions/grouplogo.php:440
-#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144
-#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192
-#: lib/imagefile.php:150 lib/imagefile.php:197
-msgid "Unknown file type"
-msgstr "Unknown file type"
-
-#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70
-#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71
-msgid "No profile specified."
-msgstr "No profile specified."
-
-#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46
-#: actions/unblock.php:75 actions/groupblock.php:76
-#: actions/groupunblock.php:76 actions/makeadmin.php:76
-msgid "No profile with that ID."
-msgstr "No profile with that ID."
-
-#: actions/block.php:111 actions/block.php:134
-msgid "Block user"
-msgstr "Block user"
-
-#: actions/block.php:129
-msgid "Are you sure you want to block this user? "
-msgstr "Are you sure you want to block this user? "
-
-#: actions/block.php:162 actions/block.php:165
-msgid "You have already blocked this user."
-msgstr "You have already blocked this user."
-
-#: actions/block.php:167 actions/block.php:170
-msgid "Failed to save block information."
-msgstr "Failed to save block information."
-
-#: actions/confirmaddress.php:159
-#, php-format
-msgid "The address \"%s\" has been "
-msgstr "The address \"%s\" has been "
-
-#: actions/deletenotice.php:73
-msgid "You are about to permanently delete a notice. "
-msgstr "You are about to permanently delete a notice. "
-
-#: actions/disfavor.php:94
-msgid "Add to favorites"
-msgstr "Add to favourites"
-
-#: actions/editgroup.php:54 actions/editgroup.php:56
-#, php-format
-msgid "Edit %s group"
-msgstr "Edit %s group"
-
-#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66
-#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100
-#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68
-#: actions/groupdesignsettings.php:68 actions/showgroup.php:105
-msgid "Inboxes must be enabled for groups to work"
-msgstr "Inboxes must be enabled for groups to work"
-
-#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70
-#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68
-#: actions/grouplogo.php:70 actions/newgroup.php:65
-msgid "You must be logged in to create a group."
-msgstr "You must be logged in to create a group."
-
-#: actions/editgroup.php:87 actions/grouplogo.php:87
-#: actions/groupmembers.php:76 actions/joingroup.php:81
-#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96
-#: actions/blockedfromgroup.php:73 actions/editgroup.php:89
-#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
-#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
-msgid "No nickname"
-msgstr "No nickname"
-
-#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
-#: actions/groupmembers.php:83 actions/joingroup.php:88
-#: actions/showgroup.php:128 actions/grouplogo.php:104
-#: actions/grouprss.php:103 actions/blockedfromgroup.php:80
-#: actions/editgroup.php:101 actions/groupdesignsettings.php:102
-#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99
-#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
-msgid "No such group"
-msgstr "No such group"
-
-#: actions/editgroup.php:106 actions/editgroup.php:165
-#: actions/grouplogo.php:107 actions/grouplogo.php:111
-#: actions/editgroup.php:108 actions/editgroup.php:167
-#: actions/groupdesignsettings.php:109 actions/editgroup.php:103
-#: actions/editgroup.php:168 actions/groupdesignsettings.php:104
-#: actions/grouplogo.php:106
-msgid "You must be an admin to edit the group"
-msgstr "You must be an admin to edit the group"
-
-#: actions/editgroup.php:157 actions/editgroup.php:159
-#: actions/editgroup.php:154
-msgid "Use this form to edit the group."
-msgstr "Use this form to edit the group."
-
-#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156
-msgid "Nickname must have only lowercase letters "
-msgstr "Nickname must have only lowercase letters "
-
-#: actions/editgroup.php:198 actions/newgroup.php:149
-#: actions/editgroup.php:200 actions/newgroup.php:150
-msgid "description is too long (max 140 chars)."
-msgstr "description is too long (max 140 chars)."
-
-#: actions/editgroup.php:218 actions/editgroup.php:253
-msgid "Could not update group."
-msgstr "Could not update group."
-
-#: actions/editgroup.php:226 actions/editgroup.php:269
-msgid "Options saved."
-msgstr "Options saved."
-
-#: actions/emailsettings.php:107 actions/imsettings.php:108
-#, php-format
-msgid "Awaiting confirmation on this address. "
-msgstr "Awaiting confirmation on this address. "
-
-#: actions/emailsettings.php:139 actions/smssettings.php:150
-msgid "Make a new email address for posting to; "
-msgstr "Make a new e-mail address for posting to; "
-
-#: actions/emailsettings.php:157
-msgid "Send me email when someone "
-msgstr "Send me e-mail when someone "
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:173
-#: actions/emailsettings.php:179
-msgid "Allow friends to nudge me and send me an email."
-msgstr "Allow friends to nudge me and send me an e-mail."
-
-#: actions/emailsettings.php:321
-msgid "That email address already belongs "
-msgstr "That e-mail address already belongs "
-
-#: actions/emailsettings.php:343
-msgid "A confirmation code was sent to the email address you added. "
-msgstr "A confirmation code was sent to the e-mail address you added. "
-
-#: actions/facebookhome.php:110 actions/facebookhome.php:109
-msgid "Server error - couldn't get user!"
-msgstr "Server error - couldn't get user!"
-
-#: actions/facebookhome.php:196
-#, php-format
-msgid "If you would like the %s app to automatically update "
-msgstr "If you would like the %s app to automatically update "
-
-#: actions/facebookhome.php:213 actions/facebooksettings.php:137
-#, php-format
-msgid "Allow %s to update my Facebook status"
-msgstr "Allow %s to update my Facebook status"
-
-#: actions/facebookhome.php:218 actions/facebookhome.php:223
-#: actions/facebookhome.php:217
-msgid "Skip"
-msgstr "Skip"
-
-#: actions/facebookhome.php:235 lib/facebookaction.php:479
-#: lib/facebookaction.php:471
-msgid "No notice content!"
-msgstr "No notice content!"
-
-#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399
-#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433
-#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435
-#: lib/action.php:1053
-msgid "Pagination"
-msgstr "Pagination"
-
-#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408
-#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442
-#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444
-#: lib/action.php:1062
-msgid "After"
-msgstr "After"
-
-#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416
-#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450
-#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452
-#: lib/action.php:1070
-msgid "Before"
-msgstr "Before"
-
-#: actions/facebookinvite.php:70 actions/facebookinvite.php:72
-#, php-format
-msgid "Thanks for inviting your friends to use %s"
-msgstr "Thanks for inviting your friends to use %s"
-
-#: actions/facebookinvite.php:72 actions/facebookinvite.php:74
-msgid "Invitations have been sent to the following users:"
-msgstr "Invitations have been sent to the following users:"
-
-#: actions/facebookinvite.php:96 actions/facebookinvite.php:102
-#: actions/facebookinvite.php:94
-#, php-format
-msgid "You have been invited to %s"
-msgstr "You have been invited to %s"
-
-#: actions/facebookinvite.php:105 actions/facebookinvite.php:111
-#: actions/facebookinvite.php:103
-#, php-format
-msgid "Invite your friends to use %s"
-msgstr "Invite your friends to use %s"
-
-#: actions/facebookinvite.php:113 actions/facebookinvite.php:126
-#: actions/facebookinvite.php:124
-#, php-format
-msgid "Friends already using %s:"
-msgstr "Friends already using %s:"
-
-#: actions/facebookinvite.php:130 actions/facebookinvite.php:143
-#: actions/facebookinvite.php:142
-#, php-format
-msgid "Send invitations"
-msgstr "Send invitations"
-
-#: actions/facebookremove.php:56
-msgid "Couldn't remove Facebook user."
-msgstr "Couldn't remove Facebook user."
-
-#: actions/facebooksettings.php:65
-msgid "There was a problem saving your sync preferences!"
-msgstr "There was a problem saving your sync preferences!"
-
-#: actions/facebooksettings.php:67
-msgid "Sync preferences saved."
-msgstr "Sync preferences saved."
-
-#: actions/facebooksettings.php:90
-msgid "Automatically update my Facebook status with my notices."
-msgstr "Automatically update my Facebook status with my notices."
-
-#: actions/facebooksettings.php:97
-msgid "Send \"@\" replies to Facebook."
-msgstr "Send \"@\" replies to Facebook."
-
-#: actions/facebooksettings.php:106
-msgid "Prefix"
-msgstr "Prefix"
-
-#: actions/facebooksettings.php:108
-msgid "A string to prefix notices with."
-msgstr "A string to prefix notices with."
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid "If you would like %s to automatically update "
-msgstr "If you would like %s to automatically update "
-
-#: actions/facebooksettings.php:147
-msgid "Sync preferences"
-msgstr "Sync preferences"
-
-#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92
-msgid "Disfavor favorite"
-msgstr "Disfavor favourite"
-
-#: actions/favorited.php:65 lib/popularnoticesection.php:76
-#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82
-#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91
-#: lib/popularnoticesection.php:87
-msgid "Popular notices"
-msgstr "Popular notices"
-
-#: actions/favorited.php:67
-#, php-format
-msgid "Popular notices, page %d"
-msgstr "Popular notices, page %d"
-
-#: actions/favorited.php:79
-msgid "The most popular notices on the site right now."
-msgstr "The most popular notices on the site right now."
-
-#: actions/featured.php:69 lib/featureduserssection.php:82
-#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89
-#: lib/featureduserssection.php:87
-msgid "Featured users"
-msgstr "Featured users"
-
-#: actions/featured.php:71
-#, php-format
-msgid "Featured users, page %d"
-msgstr "Featured users, page %d"
-
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some of the great users on %s"
-msgstr "A selection of some of the great users on %s"
-
-#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96
-msgid "That user has blocked you from subscribing."
-msgstr "That user has blocked you from subscribing."
-
-#: actions/groupbyid.php:79 actions/groupbyid.php:74
-msgid "No ID"
-msgstr "No ID"
-
-#: actions/grouplogo.php:138 actions/grouplogo.php:191
-#: actions/grouplogo.php:144 actions/grouplogo.php:197
-#: actions/grouplogo.php:139 actions/grouplogo.php:192
-msgid "Group logo"
-msgstr "Group logo"
-
-#: actions/grouplogo.php:149
-msgid "You can upload a logo image for your group."
-msgstr "You can upload a logo image for your group."
-
-#: actions/grouplogo.php:448 actions/grouplogo.php:401
-#: actions/grouplogo.php:396
-msgid "Logo updated."
-msgstr "Logo updated."
-
-#: actions/grouplogo.php:450 actions/grouplogo.php:403
-#: actions/grouplogo.php:398
-msgid "Failed updating logo."
-msgstr "Failed updating logo."
-
-#: actions/groupmembers.php:93 lib/groupnav.php:91
-#, php-format
-msgid "%s group members"
-msgstr "%s group members"
-
-#: actions/groupmembers.php:96
-#, php-format
-msgid "%s group members, page %d"
-msgstr "%s group members, page %d"
-
-#: actions/groupmembers.php:111
-msgid "A list of the users in this group."
-msgstr "A list of the users in this group."
-
-#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79
-#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220
-#: lib/subgroupnav.php:98
-msgid "Groups"
-msgstr "Groups"
-
-#: actions/groups.php:64
-#, php-format
-msgid "Groups, page %d"
-msgstr "Groups, page %d"
-
-#: actions/groups.php:90
-#, php-format
-msgid "%%%%site.name%%%% groups let you find and talk with "
-msgstr "%%%%site.name%%%% groups let you find and talk with "
-
-#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123
-#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122
-msgid "Create a new group"
-msgstr "Create a new group"
-
-#: actions/groupsearch.php:57
-#, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-msgstr ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-
-#: actions/groupsearch.php:63 actions/groupsearch.php:58
-msgid "Group search"
-msgstr "Group search"
-
-#: actions/imsettings.php:70
-msgid "You can send and receive notices through "
-msgstr "You can send and receive notices through "
-
-#: actions/imsettings.php:120
-#, php-format
-msgid "Jabber or GTalk address, "
-msgstr "Jabber or GTalk address, "
-
-#: actions/imsettings.php:147
-msgid "Send me replies through Jabber/GTalk "
-msgstr "Send me replies through Jabber/GTalk "
-
-#: actions/imsettings.php:321
-#, php-format
-msgid "A confirmation code was sent "
-msgstr "A confirmation code was sent "
-
-#: actions/joingroup.php:65 actions/joingroup.php:60
-msgid "You must be logged in to join a group."
-msgstr "You must be logged in to join a group."
-
-#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217
-msgid "You are already a member of that group"
-msgstr "You are already a member of that group"
-
-#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234
-#, php-format
-msgid "Could not join user %s to group %s"
-msgstr "Could not join user %s to group %s"
-
-#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239
-#, php-format
-msgid "%s joined group %s"
-msgstr "%s joined group %s"
-
-#: actions/leavegroup.php:60
-msgid "Inboxes must be enabled for groups to work."
-msgstr "Inboxes must be enabled for groups to work."
-
-#: actions/leavegroup.php:65 actions/leavegroup.php:60
-msgid "You must be logged in to leave a group."
-msgstr "You must be logged in to leave a group."
-
-#: actions/leavegroup.php:88 actions/groupblock.php:86
-#: actions/groupunblock.php:86 actions/makeadmin.php:86
-#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83
-#: lib/command.php:212 lib/command.php:263
-msgid "No such group."
-msgstr "No such group."
-
-#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268
-msgid "You are not a member of that group."
-msgstr "You are not a member of that group."
-
-#: actions/leavegroup.php:100
-msgid "You may not leave a group while you are its administrator."
-msgstr "You may not leave a group while you are its administrator."
-
-#: actions/leavegroup.php:130 actions/leavegroup.php:124
-#: actions/leavegroup.php:119 lib/command.php:278
-msgid "Could not find membership record."
-msgstr "Could not find membership record."
-
-#: actions/leavegroup.php:138 actions/leavegroup.php:132
-#: actions/leavegroup.php:127 lib/command.php:284
-#, php-format
-msgid "Could not remove user %s to group %s"
-msgstr "Could not remove user %s to group %s"
-
-#: actions/leavegroup.php:145 actions/leavegroup.php:139
-#: actions/leavegroup.php:134 lib/command.php:289
-#, php-format
-msgid "%s left group %s"
-msgstr "%s left group %s"
-
-#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208
-#: actions/login.php:216 actions/login.php:243
-msgid "Login to site"
-msgstr "Login to site"
#: actions/microsummary.php:69
msgid "No current status"
@@ -4577,38 +1728,96 @@ msgstr "No current status"
msgid "New group"
msgstr "New group"
-#: actions/newgroup.php:115 actions/newgroup.php:110
+#: actions/newgroup.php:110
msgid "Use this form to create a new group."
msgstr "Use this form to create a new group."
-#: actions/newgroup.php:177 actions/newgroup.php:209
-#: actions/apigroupcreate.php:136 actions/newgroup.php:204
-msgid "Could not create group."
-msgstr "Could not create group."
+#: actions/newmessage.php:71 actions/newmessage.php:231
+msgid "New message"
+msgstr "New message"
-#: actions/newgroup.php:191 actions/newgroup.php:229
-#: actions/apigroupcreate.php:166 actions/newgroup.php:224
-msgid "Could not set group membership."
-msgstr "Could not set group membership."
+#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
+msgid "You can't send a message to this user."
+msgstr "You can't send a message to this user."
-#: actions/newmessage.php:119 actions/newnotice.php:132
-msgid "That's too long. "
-msgstr "That's too long. "
+#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
+#: lib/command.php:424
+msgid "No content!"
+msgstr "No content!"
-#: actions/newmessage.php:134
-msgid "Don't send a message to yourself; "
-msgstr "Don't send a message to yourself; "
+#: actions/newmessage.php:158
+msgid "No recipient specified."
+msgstr "No recipient specified."
-#: actions/newnotice.php:166 actions/newnotice.php:174
-#: actions/newnotice.php:272 actions/newnotice.php:199
+#: actions/newmessage.php:164 lib/command.php:370
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+
+#: actions/newmessage.php:181
+#, fuzzy
+msgid "Message sent"
+msgstr "Message"
+
+#: actions/newmessage.php:185 lib/command.php:375
+#, php-format
+msgid "Direct message to %s sent"
+msgstr "Direct message to %s sent"
+
+#: actions/newmessage.php:210 actions/newnotice.php:233 lib/channel.php:170
+msgid "Ajax Error"
+msgstr "Ajax Error"
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "New notice"
+
+#: actions/newnotice.php:199
msgid "Notice posted"
msgstr "Notice posted"
-#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208
-#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
-#: actions/newmessage.php:210 actions/newnotice.php:233
-msgid "Ajax Error"
-msgstr "Ajax Error"
+#: actions/noticesearch.php:68
+#, php-format
+msgid ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+msgstr ""
+"Search for notices on %%site.name%% by their contents. Separate search terms "
+"by spaces; they must be 3 characters or more."
+
+#: actions/noticesearch.php:78
+msgid "Text search"
+msgstr "Text search"
+
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%s\" on %s"
+msgstr " Search Stream for \"%s\""
+
+#: actions/noticesearch.php:121
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearch.php:124
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and be the first to "
+"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
+msgstr ""
+
+#: actions/noticesearchrss.php:89
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "Updates from %1$s on %2$s!"
+
+#: actions/noticesearchrss.php:91
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgstr "All updates matching search term \"%s\""
#: actions/nudge.php:85
msgid ""
@@ -4624,13 +1833,36 @@ msgstr "Nudge sent"
msgid "Nudge sent!"
msgstr "Nudge sent!"
-#: actions/openidlogin.php:97 actions/openidlogin.php:106
-msgid "OpenID login"
-msgstr "OpenID login"
+#: actions/oembed.php:79 actions/shownotice.php:100
+msgid "Notice has no profile"
+msgstr "Notice has no profile"
-#: actions/openidsettings.php:128
-msgid "Removing your only OpenID "
-msgstr "Removing your only OpenID "
+#: actions/oembed.php:86 actions/shownotice.php:180
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "%1$s's status on %2$s"
+
+#: actions/oembed.php:157
+#, fuzzy
+msgid "content type "
+msgstr "Connect"
+
+#: actions/oembed.php:160
+msgid "Only "
+msgstr ""
+
+#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:963
+#: lib/api.php:991 lib/api.php:1101
+msgid "Not a supported data format."
+msgstr "Not a supported data format."
+
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "People Search"
+
+#: actions/opensearch.php:67
+msgid "Notice Search"
+msgstr "Notice Search"
#: actions/othersettings.php:60
msgid "Other Settings"
@@ -4640,53 +1872,198 @@ msgstr "Other Settings"
msgid "Manage various other options."
msgstr "Manage various other options."
-#: actions/othersettings.php:93
-msgid "URL Auto-shortening"
-msgstr "URL Auto-shortening"
+#: actions/othersettings.php:117
+msgid "Shorten URLs with"
+msgstr ""
-#: actions/othersettings.php:112
-msgid "Service"
-msgstr "Service"
-
-#: actions/othersettings.php:113 actions/othersettings.php:111
#: actions/othersettings.php:118
msgid "Automatic shortening service to use."
msgstr "Automatic shortening service to use."
-#: actions/othersettings.php:144 actions/othersettings.php:146
+#: actions/othersettings.php:122
+#, fuzzy
+msgid "View profile designs"
+msgstr "Profile settings"
+
+#: actions/othersettings.php:123
+msgid "Show or hide profile designs."
+msgstr ""
+
#: actions/othersettings.php:153
msgid "URL shortening service is too long (max 50 chars)."
msgstr "URL shortening service is too long (max 50 chars)."
+#: actions/outbox.php:58
+#, php-format
+msgid "Outbox for %s - page %d"
+msgstr "Outbox for %s - page %d"
+
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "Outbox for %s"
+
+#: actions/outbox.php:116
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr "This is your outbox, which lists private messages you have sent."
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Change password"
+
#: actions/passwordsettings.php:69
msgid "Change your password."
msgstr "Change your password."
-#: actions/passwordsettings.php:89 actions/recoverpassword.php:228
#: actions/passwordsettings.php:95 actions/recoverpassword.php:231
msgid "Password change"
msgstr "Password change"
-#: actions/peopletag.php:35 actions/peopletag.php:70
+#: actions/passwordsettings.php:103
+msgid "Old password"
+msgstr "Old password"
+
+#: actions/passwordsettings.php:107 actions/recoverpassword.php:235
+msgid "New password"
+msgstr "New password"
+
+#: actions/passwordsettings.php:108
+msgid "6 or more characters"
+msgstr "6 or more characters"
+
+#: actions/passwordsettings.php:111 actions/recoverpassword.php:239
+#: actions/register.php:432 actions/smssettings.php:134
+msgid "Confirm"
+msgstr "Confirm"
+
+#: actions/passwordsettings.php:112
+msgid "same as password above"
+msgstr "same as password above"
+
+#: actions/passwordsettings.php:116
+msgid "Change"
+msgstr "Change"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr "Password must be 6 or more characters."
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Passwords don't match."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "Incorrect old password"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr "Error saving user; invalid."
+
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:368
+msgid "Can't save new password."
+msgstr "Can't save new password."
+
+#: actions/passwordsettings.php:191 actions/recoverpassword.php:211
+msgid "Password saved."
+msgstr "Password saved."
+
+#: actions/peoplesearch.php:52
+#, php-format
+msgid ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+msgstr ""
+"Search for people on %%site.name%% by their name, location, or interests. "
+"Separate the terms by spaces; they must be 3 characters or more."
+
+#: actions/peoplesearch.php:58
+msgid "People search"
+msgstr "People Search"
+
+#: actions/peopletag.php:70
#, php-format
msgid "Not a valid people tag: %s"
msgstr "Not a valid people tag: %s"
-#: actions/peopletag.php:47 actions/peopletag.php:144
+#: actions/peopletag.php:144
#, php-format
msgid "Users self-tagged with %s - page %d"
msgstr "Users self-tagged with %s - page %d"
-#: actions/peopletag.php:91
-#, php-format
-msgid "These are users who have tagged themselves \"%s\" "
-msgstr "These are users who have tagged themselves \"%s\" "
+#: actions/postnotice.php:84
+msgid "Invalid notice content"
+msgstr "Invalid notice content"
-#: actions/profilesettings.php:91 actions/profilesettings.php:99
+#: actions/postnotice.php:90
+#, php-format
+msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
+msgstr ""
+
+#: actions/profilesettings.php:60
+msgid "Profile settings"
+msgstr "Profile settings"
+
+#: actions/profilesettings.php:71
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+"You can update your personal profile info here so people know more about you."
+
+#: actions/profilesettings.php:99
msgid "Profile information"
msgstr "Profile information"
-#: actions/profilesettings.php:124 actions/profilesettings.php:125
+#: actions/profilesettings.php:108 lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 lowercase letters or numbers, no punctuation or spaces"
+
+#: actions/profilesettings.php:111 actions/register.php:447
+#: actions/showgroup.php:247 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:149
+msgid "Full name"
+msgstr "Full name"
+
+#: actions/profilesettings.php:115 actions/register.php:452
+#: lib/groupeditform.php:161
+msgid "Homepage"
+msgstr "Homepage"
+
+#: actions/profilesettings.php:117 actions/register.php:454
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr "URL of your homepage, blog, or profile on another site"
+
+#: actions/profilesettings.php:122 actions/register.php:460
+#, fuzzy, php-format
+msgid "Describe yourself and your interests in %d chars"
+msgstr "Describe yourself and your interests in 140 chars"
+
+#: actions/profilesettings.php:125 actions/register.php:463
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Describe yourself and your "
+
+#: actions/profilesettings.php:127 actions/register.php:465
+msgid "Bio"
+msgstr "Bio"
+
+#: actions/profilesettings.php:132 actions/register.php:470
+#: actions/showgroup.php:256 actions/tagother.php:112
+#: actions/userauthorization.php:158 lib/groupeditform.php:177
+#: lib/userprofile.php:164
+msgid "Location"
+msgstr "Location"
+
+#: actions/profilesettings.php:134 actions/register.php:472
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Where you are, like \"City, State (or Region), Country\""
+
+#: actions/profilesettings.php:138 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:209
+msgid "Tags"
+msgstr "Tags"
+
#: actions/profilesettings.php:140
msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
@@ -4694,37 +2071,126 @@ msgstr ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
#: actions/profilesettings.php:144
-msgid "Automatically subscribe to whoever "
-msgstr "Automatically subscribe to whoever "
+msgid "Language"
+msgstr "Language"
-#: actions/profilesettings.php:229 actions/tagother.php:176
-#: actions/tagother.php:178 actions/profilesettings.php:230
-#: actions/profilesettings.php:246
+#: actions/profilesettings.php:145
+msgid "Preferred language"
+msgstr "Preferred language"
+
+#: actions/profilesettings.php:154
+msgid "Timezone"
+msgstr "Timezone"
+
+#: actions/profilesettings.php:155
+msgid "What timezone are you normally in?"
+msgstr "In which timezone are you?"
+
+#: actions/profilesettings.php:160
+msgid ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+msgstr ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+
+#: actions/profilesettings.php:221 actions/register.php:223
+#, fuzzy, php-format
+msgid "Bio is too long (max %d chars)."
+msgstr "Bio is too long (max 140 chars)."
+
+#: actions/profilesettings.php:228
+msgid "Timezone not selected."
+msgstr "Timezone not selected."
+
+#: actions/profilesettings.php:234
+msgid "Language is too long (max 50 chars)."
+msgstr "Language is too long (max 50 chars)."
+
+#: actions/profilesettings.php:246 actions/tagother.php:178
#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Invalid tag: \"%s\""
-#: actions/profilesettings.php:311 actions/profilesettings.php:310
+#: actions/profilesettings.php:295
+msgid "Couldn't update user for autosubscribe."
+msgstr "Couldn't update user for autosubscribe."
+
+#: actions/profilesettings.php:328
+msgid "Couldn't save profile."
+msgstr "Couldn't save profile."
+
#: actions/profilesettings.php:336
msgid "Couldn't save tags."
msgstr "Couldn't save tags."
-#: actions/public.php:107 actions/public.php:110 actions/public.php:118
+#: actions/profilesettings.php:344
+msgid "Settings saved."
+msgstr "Settings saved."
+
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)"
+msgstr ""
+
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr "Could not retrieve public stream."
+
#: actions/public.php:129
#, php-format
msgid "Public timeline, page %d"
msgstr "Public timeline, page %d"
-#: actions/public.php:173 actions/public.php:184 actions/public.php:210
-#: actions/public.php:92
-msgid "Could not retrieve public stream."
-msgstr "Could not retrieve public stream."
+#: actions/public.php:131 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Public timeline"
-#: actions/public.php:220
+#: actions/public.php:151
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Public Stream Feed"
+
+#: actions/public.php:155
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Public Stream Feed"
+
+#: actions/public.php:159
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Public Stream Feed"
+
+#: actions/public.php:179
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
+
+#: actions/public.php:182
+msgid "Be the first to post!"
+msgstr ""
+
+#: actions/public.php:186
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
+
+#: actions/public.php:233
#, php-format
msgid ""
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool. [Join now](%%action.register%%) to share notices about yourself with "
+"friends, family, and colleagues! ([Read more](%%doc.help%%))"
+msgstr ""
+
+#: actions/public.php:238
+#, fuzzy, php-format
+msgid ""
+"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
+"blogging) service based on the Free Software [StatusNet](http://status.net/) "
+"tool."
msgstr ""
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
"blogging) service "
@@ -4738,226 +2204,737 @@ msgstr "Public tag cloud"
msgid "These are most popular recent tags on %s "
msgstr "These are most popular recent tags on %s "
-#: actions/publictagcloud.php:119 actions/publictagcloud.php:135
+#: actions/publictagcloud.php:69
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#: actions/publictagcloud.php:72
+msgid "Be the first to post one!"
+msgstr ""
+
+#: actions/publictagcloud.php:75
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:135
msgid "Tag cloud"
msgstr "Tag cloud"
-#: actions/register.php:139 actions/register.php:349 actions/register.php:79
-#: actions/register.php:177 actions/register.php:394 actions/register.php:183
-#: actions/register.php:398 actions/register.php:85 actions/register.php:189
-#: actions/register.php:404
+#: actions/recoverpassword.php:36
+msgid "You are already logged in!"
+msgstr "You are already logged in!"
+
+#: actions/recoverpassword.php:62
+msgid "No such recovery code."
+msgstr "No such recovery code."
+
+#: actions/recoverpassword.php:66
+msgid "Not a recovery code."
+msgstr "Not a recovery code."
+
+#: actions/recoverpassword.php:73
+msgid "Recovery code for unknown user."
+msgstr "Recovery code for unknown user."
+
+#: actions/recoverpassword.php:86
+msgid "Error with confirmation code."
+msgstr "Error with confirmation code."
+
+#: actions/recoverpassword.php:97
+msgid "This confirmation code is too old. Please start again."
+msgstr "This confirmation code is too old. Please start again."
+
+#: actions/recoverpassword.php:111
+msgid "Could not update user with confirmed email address."
+msgstr "Couldn't update user with confirmed e-mail address."
+
+#: actions/recoverpassword.php:152
+msgid ""
+"If you have forgotten or lost your password, you can get a new one sent to "
+"the email address you have stored in your account."
+msgstr ""
+
+#: actions/recoverpassword.php:158
+msgid "You have been identified. Enter a new password below. "
+msgstr ""
+
+#: actions/recoverpassword.php:188
+msgid "Password recovery"
+msgstr ""
+
+#: actions/recoverpassword.php:191
+msgid "Nickname or email address"
+msgstr ""
+
+#: actions/recoverpassword.php:193
+msgid "Your nickname on this server, or your registered email address."
+msgstr "Your nickname on this server, or your registered e-mail address."
+
+#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+msgid "Recover"
+msgstr "Recover"
+
+#: actions/recoverpassword.php:208
+msgid "Reset password"
+msgstr "Reset password"
+
+#: actions/recoverpassword.php:209
+msgid "Recover password"
+msgstr "Recover password"
+
+#: actions/recoverpassword.php:210 actions/recoverpassword.php:322
+msgid "Password recovery requested"
+msgstr "Password recovery requested"
+
+#: actions/recoverpassword.php:213
+msgid "Unknown action"
+msgstr "Unknown action"
+
+#: actions/recoverpassword.php:236
+msgid "6 or more characters, and don't forget it!"
+msgstr "6 or more characters, and don't forget it!"
+
+#: actions/recoverpassword.php:240
+msgid "Same as password above"
+msgstr "Same as password above"
+
+#: actions/recoverpassword.php:243
+msgid "Reset"
+msgstr "Reset"
+
+#: actions/recoverpassword.php:252
+msgid "Enter a nickname or email address."
+msgstr "Enter a nickname or e-mail address."
+
+#: actions/recoverpassword.php:272
+msgid "No user with that email address or username."
+msgstr "No user with that e-mail address or username."
+
+#: actions/recoverpassword.php:287
+msgid "No registered email address for that user."
+msgstr "No registered e-mail address for that user."
+
+#: actions/recoverpassword.php:301
+msgid "Error saving address confirmation."
+msgstr "Error saving address confirmation."
+
+#: actions/recoverpassword.php:325
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"Instructions for recovering your password have been sent to the e-mail "
+"address registered to your account."
+
+#: actions/recoverpassword.php:344
+msgid "Unexpected password reset."
+msgstr "Unexpected password reset."
+
+#: actions/recoverpassword.php:352
+msgid "Password must be 6 chars or more."
+msgstr "Password must be 6 chars or more."
+
+#: actions/recoverpassword.php:356
+msgid "Password and confirmation do not match."
+msgstr "Password and confirmation do not match."
+
+#: actions/recoverpassword.php:382
+msgid "New password successfully saved. You are now logged in."
+msgstr "New password successfully saved. You are now logged in."
+
+#: actions/register.php:85 actions/register.php:189 actions/register.php:404
msgid "Sorry, only invited people can register."
msgstr "Sorry, only invited people can register."
-#: actions/register.php:149
-msgid "You can't register if you don't "
-msgstr "You can't register if you don't "
+#: actions/register.php:92
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "Error with confirmation code."
-#: actions/register.php:286
-msgid "With this form you can create "
-msgstr "With this form you can create "
+#: actions/register.php:112
+msgid "Registration successful"
+msgstr "Registration successful"
-#: actions/register.php:368
-msgid "1-64 lowercase letters or numbers, "
-msgstr "1-64 lowercase letters or numbers, "
+#: actions/register.php:114 actions/register.php:502 lib/action.php:450
+#: lib/logingroupnav.php:85
+msgid "Register"
+msgstr "Register"
-#: actions/register.php:382 actions/register.php:386
-msgid "Used only for updates, announcements, "
-msgstr "Used only for updates, announcements, "
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr "Registration not allowed."
-#: actions/register.php:398
-msgid "URL of your homepage, blog, "
-msgstr "URL of your homepage, blog, "
+#: actions/register.php:198
+msgid "You can't register if you don't agree to the license."
+msgstr "You can't register if you don't agree to the licence."
-#: actions/register.php:404
-msgid "Describe yourself and your "
-msgstr "Describe yourself and your "
+#: actions/register.php:201
+msgid "Not a valid email address."
+msgstr "Not a valid e-mail address."
-#: actions/register.php:410
-msgid "Where you are, like \"City, "
-msgstr "Where you are, like \"City, "
+#: actions/register.php:212
+msgid "Email address already exists."
+msgstr "E-mail address already exists."
-#: actions/register.php:432
-msgid " except this private data: password, "
-msgstr " except this private data: password, "
+#: actions/register.php:243 actions/register.php:264
+msgid "Invalid username or password."
+msgstr "Invalid username or password."
-#: actions/register.php:471
-#, php-format
-msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. "
-msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. "
+#: actions/register.php:342
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues. "
+msgstr ""
+
+#: actions/register.php:424
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+
+#: actions/register.php:429
+msgid "6 or more characters. Required."
+msgstr "6 or more characters. Required."
+
+#: actions/register.php:433
+msgid "Same as password above. Required."
+msgstr "Same as password above. Required."
+
+#: actions/register.php:437 actions/register.php:441
+#: lib/accountsettingsaction.php:117
+msgid "Email"
+msgstr "E-mail"
+
+#: actions/register.php:438 actions/register.php:442
+msgid "Used only for updates, announcements, and password recovery"
+msgstr "Used only for updates, announcements, and password recovery"
+
+#: actions/register.php:449
+msgid "Longer name, preferably your \"real\" name"
+msgstr "Longer name, preferably your \"real\" name"
+
+#: actions/register.php:493
+msgid "My text and files are available under "
+msgstr "My text and files are available under "
#: actions/register.php:495
-msgid "(You should receive a message by email "
-msgstr "(You should receive a message by e-mail "
+msgid "Creative Commons Attribution 3.0"
+msgstr ""
-#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171
-msgid "That's a local profile! Login to subscribe."
+#: actions/register.php:496
+#, fuzzy
+msgid ""
+" except this private data: password, email address, IM address, and phone "
+"number."
+msgstr ""
+" except this private data: password, e-mail address, IM address, phone "
+"number."
+
+#: actions/register.php:537
+#, php-format
+msgid ""
+"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
+"want to...\n"
+"\n"
+"* Go to [your profile](%s) and post your first message.\n"
+"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send "
+"notices through instant messages.\n"
+"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that "
+"share your interests. \n"
+"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell "
+"others more about you. \n"
+"* Read over the [online docs](%%%%doc.help%%%%) for features you may have "
+"missed. \n"
+"\n"
+"Thanks for signing up and we hope you enjoy using this service."
+msgstr ""
+"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may "
+"want to...\n"
+"\n"
+"* Go to [your profile](%s) and post your first message.\n"
+"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send "
+"notices through instant messages.\n"
+"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that "
+"share your interests. \n"
+"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell "
+"others more about you. \n"
+"* Read over the [online docs](%%%%doc.help%%%%) for features you may have "
+"missed. \n"
+"\n"
+"Thanks for signing up and we hope you enjoy using this service."
+
+#: actions/register.php:561
+msgid ""
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
+msgstr ""
+"(You should receive a message by e-mail momentarily, with instructions on "
+"how to confirm your e-mail address.)"
+
+#: actions/remotesubscribe.php:98
+#, php-format
+msgid ""
+"To subscribe, you can [login](%%action.login%%), or [register](%%action."
+"register%%) a new account. If you already have an account on a [compatible "
+"microblogging site](%%doc.openmublog%%), enter your profile URL below."
+msgstr ""
+"To subscribe, you can [login](%%action.login%%), or [register](%%action."
+"register%%) a new account. If you already have an account on a [compatible "
+"microblogging site](%%doc.openmublog%%), enter your profile URL below."
+
+#: actions/remotesubscribe.php:112
+msgid "Remote subscribe"
+msgstr "Remote subscribe"
+
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Subscribe to this user"
+
+#: actions/remotesubscribe.php:129
+msgid "User nickname"
+msgstr "User nickname"
+
+#: actions/remotesubscribe.php:130
+msgid "Nickname of the user you want to follow"
+msgstr "Nickname of the user you want to follow"
+
+#: actions/remotesubscribe.php:133
+msgid "Profile URL"
+msgstr "Profile URL"
+
+#: actions/remotesubscribe.php:134
+msgid "URL of your profile on another compatible microblogging service"
+msgstr "URL of your profile on another compatible microblogging service"
+
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:321
+msgid "Subscribe"
+msgstr "Subscribe"
+
+#: actions/remotesubscribe.php:159
+msgid "Invalid profile URL (bad format)"
+msgstr "Invalid profile URL (bad format)"
+
+#: actions/remotesubscribe.php:168
+#, fuzzy
+msgid ""
+"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
+msgstr "Not a valid profile URL (no YADIS document)."
+
+#: actions/remotesubscribe.php:176
+#, fuzzy
+msgid "That’s a local profile! Login to subscribe."
msgstr "That's a local profile! Login to subscribe."
-#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119
+#: actions/remotesubscribe.php:183
+#, fuzzy
+msgid "Couldn’t get a request token."
+msgstr "Couldn't get a request token."
+
+#: actions/replies.php:125 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:105
+#, php-format
+msgid "Replies to %s"
+msgstr "Replies to %s"
+
#: actions/replies.php:127
#, php-format
msgid "Replies to %s, page %d"
msgstr "Replies to %s, page %d"
-#: actions/showfavorites.php:79
+#: actions/replies.php:144
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Notice feed for %s"
+
+#: actions/replies.php:151
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Notice feed for %s"
+
+#: actions/replies.php:158
#, php-format
-msgid "%s favorite notices, page %d"
+msgid "Replies feed for %s (Atom)"
+msgstr "Notice feed for %s"
+
+#: actions/replies.php:198
+#, php-format
+msgid ""
+"This is the timeline showing replies to %s but %s hasn't received a notice "
+"to his attention yet."
+msgstr ""
+
+#: actions/replies.php:203
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:205
+#, php-format
+msgid ""
+"You can try to [nudge %s](../%s) or [post something to his or her attention]"
+"(%%%%action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
+
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "Message to %1$s on %2$s"
+
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%s's favorite notices, page %d"
msgstr "%s favourite notices, page %d"
-#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
+#: actions/showfavorites.php:132
+msgid "Could not retrieve favorite notices."
+msgstr "Could not retrieve favourite notices."
+
+#: actions/showfavorites.php:170
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Feed for friends of %s"
+
+#: actions/showfavorites.php:177
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Feed for friends of %s"
+
+#: actions/showfavorites.php:184
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Feed for friends of %s"
+
+#: actions/showfavorites.php:205
+msgid ""
+"You haven't chosen any favorite notices yet. Click the fave button on "
+"notices you like to bookmark them for later or shed a spotlight on them."
+msgstr ""
+
+#: actions/showfavorites.php:207
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Post something interesting "
+"they would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:211
+#, php-format
+msgid ""
+"%s hasn't added any notices to his favorites yet. Why not [register an "
+"account](%%%%action.register%%%%) and then post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#: actions/showfavorites.php:242
+msgid "This is a way to share what you like."
+msgstr ""
+
+#: actions/showgroup.php:82 lib/groupnav.php:85
#, php-format
msgid "%s group"
msgstr "%s group"
-#: actions/showgroup.php:79 actions/showgroup.php:84
+#: actions/showgroup.php:84
#, php-format
msgid "%s group, page %d"
msgstr "%s group, page %d"
-#: actions/showgroup.php:206 actions/showgroup.php:208
-#: actions/showgroup.php:213 actions/showgroup.php:218
+#: actions/showgroup.php:218
msgid "Group profile"
msgstr "Group profile"
-#: actions/showgroup.php:251 actions/showstream.php:278
-#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133
-#: actions/showgroup.php:253 actions/showstream.php:271
-#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258
-#: actions/showstream.php:236 actions/userauthorization.php:137
-#: lib/profilelist.php:197 actions/showgroup.php:263
-#: actions/showstream.php:295 actions/userauthorization.php:167
-#: lib/profilelist.php:230 lib/userprofile.php:177
+#: actions/showgroup.php:263 actions/tagother.php:118
+#: actions/userauthorization.php:167 lib/userprofile.php:177
msgid "URL"
msgstr "URL"
-#: actions/showgroup.php:262 actions/showstream.php:289
-#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144
-#: actions/showgroup.php:264 actions/showstream.php:282
-#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269
-#: actions/showstream.php:247 actions/userauthorization.php:149
-#: lib/profilelist.php:212 actions/showgroup.php:274
-#: actions/showstream.php:312 actions/userauthorization.php:179
-#: lib/profilelist.php:245 lib/userprofile.php:194
+#: actions/showgroup.php:274 actions/tagother.php:128
+#: actions/userauthorization.php:179 lib/userprofile.php:194
msgid "Note"
msgstr "Note"
-#: actions/showgroup.php:270 actions/showgroup.php:272
-#: actions/showgroup.php:288 actions/showgroup.php:293
+#: actions/showgroup.php:284 lib/groupeditform.php:184
+msgid "Aliases"
+msgstr ""
+
+#: actions/showgroup.php:293
msgid "Group actions"
msgstr "Group actions"
-#: actions/showgroup.php:323 actions/showgroup.php:304
-#, php-format
-msgid "Notice feed for %s group"
+#: actions/showgroup.php:328
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Notice feed for %s group"
-#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339
-#: actions/showgroup.php:384 actions/showgroup.php:373
-#: actions/showgroup.php:430 actions/showgroup.php:381
-#: actions/showgroup.php:438
+#: actions/showgroup.php:334
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Notice feed for %s group"
+
+#: actions/showgroup.php:340
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Notice feed for %s group"
+
+#: actions/showgroup.php:345
+#, php-format
+msgid "FOAF for %s group"
+msgstr "Outbox for %s"
+
+#: actions/showgroup.php:381 actions/showgroup.php:438 lib/groupnav.php:90
msgid "Members"
msgstr "Members"
-#: actions/showgroup.php:363 actions/showstream.php:413
-#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
-#: lib/tagcloudsection.php:71 actions/showgroup.php:344
-#: actions/showgroup.php:378 lib/profileaction.php:117
-#: lib/profileaction.php:148 lib/profileaction.php:226
-#: actions/showgroup.php:386
+#: actions/showgroup.php:386 lib/profileaction.php:117
+#: lib/profileaction.php:148 lib/profileaction.php:226 lib/section.php:95
+#: lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(None)"
-#: actions/showgroup.php:370 actions/showgroup.php:350
-#: actions/showgroup.php:384 actions/showgroup.php:392
+#: actions/showgroup.php:392
msgid "All members"
msgstr "All members"
-#: actions/showgroup.php:378
+#: actions/showgroup.php:429 lib/profileaction.php:173
+msgid "Statistics"
+msgstr "Statistics"
+
+#: actions/showgroup.php:432
+#, fuzzy
+msgid "Created"
+msgstr "Create"
+
+#: actions/showgroup.php:448
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. [Join now](%%%%action.register%%%%) to become part "
+"of this group and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showgroup.php:454
+#, fuzzy, php-format
+msgid ""
+"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. Its members share short messages about "
+"their life and interests. "
msgstr ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
"wikipedia.org/wiki/Micro-blogging) service "
-#: actions/showmessage.php:98
-msgid "Only the sender and recipient "
-msgstr "Only the sender and recipient "
+#: actions/showgroup.php:482
+#, fuzzy
+msgid "Admins"
+msgstr "Admin"
+
+#: actions/showmessage.php:81
+msgid "No such message."
+msgstr "No such message."
+
+#: actions/showmessage.php:98
+msgid "Only the sender and recipient may read this message."
+msgstr "Only the sender and recipient may read this message."
+
+#: actions/showmessage.php:108
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "Message to %1$s on %2$s"
+
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "Message from %1$s on %2$s"
+
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "Notice posted"
+
+#: actions/showstream.php:73
+#, fuzzy, php-format
+msgid " tagged %s"
+msgstr "Notices tagged with %s"
-#: actions/showstream.php:73 actions/showstream.php:78
#: actions/showstream.php:79
#, php-format
msgid "%s, page %d"
msgstr "%s, page %d"
+#: actions/showstream.php:122
+#, fuzzy, php-format
+msgid "Notice feed for %s tagged %s (RSS 1.0)"
+msgstr "Notice feed for %s group"
+
+#: actions/showstream.php:129
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Notice feed for %s"
+
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Notice feed for %s"
+
#: actions/showstream.php:143
-msgid "'s profile"
-msgstr "'s profile"
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Notice feed for %s"
-#: actions/showstream.php:236 actions/tagother.php:77
-#: actions/showstream.php:220 actions/showstream.php:185
-#: actions/showstream.php:193 lib/userprofile.php:75
-msgid "User profile"
-msgstr "User profile"
+#: actions/showstream.php:148
+#, fuzzy, php-format
+msgid "FOAF for %s"
+msgstr "Outbox for %s"
-#: actions/showstream.php:240 actions/tagother.php:81
-#: actions/showstream.php:224 actions/showstream.php:189
-#: actions/showstream.php:220 lib/userprofile.php:102
-msgid "Photo"
-msgstr "Photo"
+#: actions/showstream.php:191
+#, php-format
+msgid "This is the timeline for %s but %s hasn't posted anything yet."
+msgstr ""
-#: actions/showstream.php:317 actions/showstream.php:309
-#: actions/showstream.php:274 actions/showstream.php:354
-#: lib/userprofile.php:236
-msgid "User actions"
-msgstr "User actions"
+#: actions/showstream.php:196
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
-#: actions/showstream.php:342 actions/showstream.php:307
-#: actions/showstream.php:390 lib/userprofile.php:272
-msgid "Send a direct message to this user"
-msgstr "Send a direct message to this user"
+#: actions/showstream.php:198
+#, php-format
+msgid ""
+"You can try to nudge %s or [post something to his or her attention](%%%%"
+"action.newnotice%%%%?status_textarea=%s)."
+msgstr ""
-#: actions/showstream.php:343 actions/showstream.php:308
-#: actions/showstream.php:391 lib/userprofile.php:273
-msgid "Message"
-msgstr "Message"
-
-#: actions/showstream.php:451 lib/profileaction.php:157
-msgid "All subscribers"
-msgstr "All subscribers"
-
-#: actions/showstream.php:533 lib/profileaction.php:235
-msgid "All groups"
-msgstr "All groups"
-
-#: actions/showstream.php:542
+#: actions/showstream.php:234
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
+"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
+msgstr ""
+
+#: actions/showstream.php:239
+#, fuzzy, php-format
+msgid ""
+"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
+"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
+"[StatusNet](http://status.net/) tool. "
msgstr ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
"wikipedia.org/wiki/Micro-blogging) service "
-#: actions/smssettings.php:128
-msgid "Phone number, no punctuation or spaces, "
-msgstr "Phone number, no punctuation or spaces, "
+#: actions/smssettings.php:58
+msgid "SMS Settings"
+msgstr "SMS Settings"
-#: actions/smssettings.php:162
-msgid "Send me notices through SMS; "
-msgstr "Send me notices through SMS; "
+#: actions/smssettings.php:69
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr "You can receive SMS messages through e-mail from %%site.name%%."
-#: actions/smssettings.php:335
-msgid "A confirmation code was sent to the phone number you added. "
-msgstr "A confirmation code was sent to the phone number you added. "
+#: actions/smssettings.php:91
+#, fuzzy
+msgid "SMS is not available."
+msgstr "This page is not available in a "
-#: actions/smssettings.php:453 actions/smssettings.php:465
+#: actions/smssettings.php:112
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "Current confirmed SMS-enabled phone number."
+
+#: actions/smssettings.php:123
+msgid "Awaiting confirmation on this phone number."
+msgstr "Awaiting confirmation on this phone number."
+
+#: actions/smssettings.php:130
+msgid "Confirmation code"
+msgstr "Confirmation code"
+
+#: actions/smssettings.php:131
+msgid "Enter the code you received on your phone."
+msgstr "Enter the code you received on your phone."
+
+#: actions/smssettings.php:138
+msgid "SMS Phone number"
+msgstr "SMS Phone number"
+
+#: actions/smssettings.php:140
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "Phone number, no punctuation or spaces, with area code"
+
+#: actions/smssettings.php:174
+#, fuzzy
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+
+#: actions/smssettings.php:306
+msgid "No phone number."
+msgstr "No phone number."
+
+#: actions/smssettings.php:311
+#, fuzzy
+msgid "No carrier selected."
+msgstr "No carrier selected."
+
+#: actions/smssettings.php:318
+msgid "That is already your phone number."
+msgstr "That is already your phone number."
+
+#: actions/smssettings.php:321
+msgid "That phone number already belongs to another user."
+msgstr "That phone number already belongs to another user."
+
+#: actions/smssettings.php:347
+#, fuzzy
+msgid ""
+"A confirmation code was sent to the phone number you added. Check your phone "
+"for the code and instructions on how to use it."
+msgstr ""
+"A confirmation code was sent to the phone number you added. Check your inbox "
+"(and spam box!) for the code and instructions on how to use it."
+
+#: actions/smssettings.php:374
+msgid "That is the wrong confirmation number."
+msgstr "That is the wrong confirmation number."
+
+#: actions/smssettings.php:405
+msgid "That is not your phone number."
+msgstr "That is not your phone number."
+
+#: actions/smssettings.php:465
#, fuzzy
msgid "Mobile carrier"
msgstr "Mobile carrier"
+#: actions/smssettings.php:469
+#, fuzzy
+msgid "Select a carrier"
+msgstr "Select a carrier"
+
+#: actions/smssettings.php:476
+#, fuzzy, php-format
+msgid ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
+"email but isn't listed here, send email to let us know at %s."
+msgstr ""
+"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-"
+"mail but isn't listed here, send e-mail to let us know at %s."
+
+#: actions/smssettings.php:498
+msgid "No code entered"
+msgstr "No code entered"
+
#: actions/subedit.php:70
msgid "You are not subscribed to that profile."
msgstr "You are not subscribed to that profile."
@@ -4985,1733 +2962,13 @@ msgid "%s subscribers, page %d"
msgstr "%s subscribers, page %d"
#: actions/subscribers.php:63
-msgid "These are the people who listen to "
-msgstr "These are the people who listen to "
+msgid "These are the people who listen to your notices."
+msgstr "These are the people who listen to your notices."
#: actions/subscribers.php:67
#, php-format
-msgid "These are the people who "
-msgstr "These are the people who "
-
-#: actions/subscriptions.php:52
-#, php-format
-msgid "%s subscriptions"
-msgstr "%s subscriptions"
-
-#: actions/subscriptions.php:54
-#, php-format
-msgid "%s subscriptions, page %d"
-msgstr "%s subscriptions, page %d"
-
-#: actions/subscriptions.php:65
-msgid "These are the people whose notices "
-msgstr "These are the people whose notices "
-
-#: actions/subscriptions.php:69
-#, php-format
-msgid "These are the people whose "
-msgstr "These are the people whose "
-
-#: actions/subscriptions.php:122 actions/subscriptions.php:124
-#: actions/subscriptions.php:183 actions/subscriptions.php:194
-msgid "Jabber"
-msgstr "Jabber"
-
-#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68
-#, php-format
-msgid "Notices tagged with %s, page %d"
-msgstr "Notices tagged with %s, page %d"
-
-#: actions/tag.php:66 actions/tag.php:73
-#, php-format
-msgid "Messages tagged \"%s\", most recent first"
-msgstr "Messages tagged \"%s\", most recent first"
-
-#: actions/tagother.php:33
-msgid "Not logged in"
-msgstr "Not logged in"
-
-#: actions/tagother.php:39
-msgid "No id argument."
-msgstr "No id argument."
-
-#: actions/tagother.php:65
-#, php-format
-msgid "Tag %s"
-msgstr "Tag %s"
-
-#: actions/tagother.php:141
-msgid "Tag user"
-msgstr "Tag user"
-
-#: actions/tagother.php:149 actions/tagother.php:151
-msgid ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-msgstr ""
-"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
-"separated"
-
-#: actions/tagother.php:164
-msgid "There was a problem with your session token."
-msgstr "There was a problem with your session token."
-
-#: actions/tagother.php:191 actions/tagother.php:193
-msgid ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-msgstr ""
-"You can only tag people you are subscribed to or who are subscribed to you."
-
-#: actions/tagother.php:198 actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Could not save tags."
-
-#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236
-msgid "Use this form to add tags to your subscribers or subscriptions."
-msgstr "Use this form to add tags to your subscribers or subscriptions."
-
-#: actions/tagrss.php:35
-msgid "No such tag."
-msgstr "No such tag."
-
-#: actions/tagrss.php:66 actions/tagrss.php:64
-#, php-format
-msgid "Microblog tagged with %s"
-msgstr "Microblog tagged with %s"
-
-#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49
-#: actions/apiblockcreate.php:108
-msgid "Block user failed."
-msgstr "Block user failed."
-
-#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71
-#: actions/apiblockdestroy.php:107
-msgid "Unblock user failed."
-msgstr "Unblock user failed."
-
-#: actions/twitapiusers.php:48 actions/twitapiusers.php:52
-#: actions/twitapiusers.php:50 actions/apiusershow.php:96
-msgid "Not found."
-msgstr "Not found."
-
-#: actions/twittersettings.php:71
-msgid "Add your Twitter account to automatically send "
-msgstr "Add your Twitter account to automatically send "
-
-#: actions/twittersettings.php:119 actions/twittersettings.php:122
-msgid "Twitter user name"
-msgstr "Twitter user name"
-
-#: actions/twittersettings.php:126 actions/twittersettings.php:129
-msgid "Twitter password"
-msgstr "Twitter password"
-
-#: actions/twittersettings.php:228 actions/twittersettings.php:232
-#: actions/twittersettings.php:248
-msgid "Twitter Friends"
-msgstr "Twitter Friends"
-
-#: actions/twittersettings.php:327
-msgid "Username must have only numbers, "
-msgstr "Username must have only numbers, "
-
-#: actions/twittersettings.php:341
-#, php-format
-msgid "Unable to retrieve account information "
-msgstr "Unable to retrieve account information "
-
-#: actions/unblock.php:108 actions/groupunblock.php:128
-msgid "Error removing the block."
-msgstr "Error removing the block."
-
-#: actions/unsubscribe.php:50 actions/unsubscribe.php:77
-msgid "No profile id in request."
-msgstr "No profile id in request."
-
-#: actions/unsubscribe.php:57 actions/unsubscribe.php:84
-msgid "No profile with that id."
-msgstr "No profile with that id."
-
-#: actions/unsubscribe.php:71 actions/unsubscribe.php:98
-msgid "Unsubscribed"
-msgstr "Unsubscribed"
-
-#: actions/usergroups.php:63 actions/usergroups.php:62
-#: actions/apigrouplistall.php:90
-#, php-format
-msgid "%s groups"
-msgstr "%s groups"
-
-#: actions/usergroups.php:65 actions/usergroups.php:64
-#, php-format
-msgid "%s groups, page %d"
-msgstr "%s groups, page %d"
-
-#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144
-#: classes/Notice.php:183
-msgid "Problem saving notice. Unknown user."
-msgstr "Problem saving notice. Unknown user."
-
-#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149
-#: classes/Notice.php:188
-msgid ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-msgstr ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-
-#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161
-#: classes/Notice.php:202
-msgid "You are banned from posting notices on this site."
-msgstr "You are banned from posting notices on this site."
-
-#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112
-msgid "Upload an avatar"
-msgstr "Upload an avatar"
-
-#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
-#: lib/accountsettingsaction.php:123
-msgid "Other"
-msgstr "Other"
-
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
-#: lib/accountsettingsaction.php:124
-msgid "Other options"
-msgstr "Other options"
-
-#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
-#, php-format
-msgid "%s - %s"
-msgstr "%s - %s"
-
-#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
-msgid "Untitled page"
-msgstr "Untitled page"
-
-#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424
-msgid "Primary site navigation"
-msgstr "Primary site navigation"
-
-#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430
-msgid "Personal profile and friends timeline"
-msgstr "Personal profile and friends timeline"
-
-#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459
-msgid "Search for people or text"
-msgstr "Search for people or text"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Account"
-msgstr "Account"
-
-#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
-msgid "Change your email, avatar, password, profile"
-msgstr "Change your e-mail, avatar, password, profile"
-
-#: lib/action.php:330 lib/action.php:403 lib/action.php:422
-msgid "Connect to IM, SMS, Twitter"
-msgstr "Connect to IM, SMS, Twitter"
-
-#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445
-msgid "Logout from the site"
-msgstr "Logout from the site"
-
-#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453
-msgid "Login to the site"
-msgstr "Login to the site"
-
-#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450
-msgid "Create an account"
-msgstr "Create an account"
-
-#: lib/action.php:341 lib/action.php:418
-msgid "Login with OpenID"
-msgstr "Login with OpenID"
-
-#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456
-msgid "Help me!"
-msgstr "Help me!"
-
-#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480
-msgid "Site notice"
-msgstr "Site notice"
-
-#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546
-msgid "Local views"
-msgstr "Local views"
-
-#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612
-msgid "Page notice"
-msgstr "Page notice"
-
-#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714
-msgid "Secondary site navigation"
-msgstr "Secondary site navigation"
-
-#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
-#: lib/action.php:749 lib/action.php:770 lib/action.php:764
-msgid "StatusNet software license"
-msgstr "StatusNet software licence"
-
-#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
-msgid "All "
-msgstr "All "
-
-#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799
-msgid "license."
-msgstr "licence."
-
-#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block this user"
-msgstr "Block this user"
-
-#: lib/blockform.php:153 actions/groupmembers.php:343
-#: actions/groupmembers.php:346
-msgid "Block"
-msgstr "Block"
-
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
-msgid "Disfavor this notice"
-msgstr "Disfavour this notice"
-
-#: lib/facebookaction.php:268
-#, php-format
-msgid "To use the %s Facebook Application you need to login "
-msgstr "To use the %s Facebook Application you need to login "
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#: lib/facebookaction.php:275
-msgid " a new account."
-msgstr " a new account."
-
-#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354
-#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357
-#: lib/mailbox.php:217 lib/noticelist.php:361
-msgid "Published"
-msgstr "Published"
-
-#: lib/favorform.php:114 lib/favorform.php:140
-msgid "Favor this notice"
-msgstr "Favour this notice"
-
-#: lib/feedlist.php:64
-msgid "Export data"
-msgstr "Export data"
-
-#: lib/galleryaction.php:121
-msgid "Filter tags"
-msgstr "Filter tags"
-
-#: lib/galleryaction.php:131
-msgid "All"
-msgstr "All"
-
-#: lib/galleryaction.php:137 lib/galleryaction.php:138
-#: lib/galleryaction.php:140
-msgid "Tag"
-msgstr "Tag"
-
-#: lib/galleryaction.php:138 lib/galleryaction.php:139
-#: lib/galleryaction.php:141
-msgid "Choose a tag to narrow list"
-msgstr "Choose a tag to narrow list"
-
-#: lib/galleryaction.php:139 lib/galleryaction.php:141
-#: lib/galleryaction.php:143
-msgid "Go"
-msgstr "Go"
-
-#: lib/groupeditform.php:148 lib/groupeditform.php:163
-msgid "URL of the homepage or blog of the group or topic"
-msgstr "URL of the homepage or blog of the group or topic"
-
-#: lib/groupeditform.php:151 lib/groupeditform.php:166
-#: lib/groupeditform.php:172
-msgid "Description"
-msgstr "Description"
-
-#: lib/groupeditform.php:153 lib/groupeditform.php:168
-msgid "Describe the group or topic in 140 chars"
-msgstr "Describe the group or topic in 140 chars"
-
-#: lib/groupeditform.php:158 lib/groupeditform.php:173
-#: lib/groupeditform.php:179
-msgid ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-msgstr ""
-"Location for the group, if any, like \"City, State (or Region), Country\""
-
-#: lib/groupnav.php:84 lib/searchgroupnav.php:84
-msgid "Group"
-msgstr "Group"
-
-#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
-msgid "Admin"
-msgstr "Admin"
-
-#: lib/groupnav.php:101 lib/groupnav.php:107
-#, php-format
-msgid "Edit %s group properties"
-msgstr "Edit %s group properties"
-
-#: lib/groupnav.php:106 lib/groupnav.php:112
-msgid "Logo"
-msgstr "Logo"
-
-#: lib/groupnav.php:107 lib/groupnav.php:113
-#, php-format
-msgid "Add or edit %s logo"
-msgstr "Add or edit %s logo"
-
-#: lib/groupsbymemberssection.php:71
-msgid "Groups with most members"
-msgstr "Groups with most members"
-
-#: lib/groupsbypostssection.php:71
-msgid "Groups with most posts"
-msgstr "Groups with most posts"
-
-#: lib/grouptagcloudsection.php:56
-#, php-format
-msgid "Tags in %s group's notices"
-msgstr "Tags in %s group's notices"
-
-#: lib/htmloutputter.php:104
-msgid "This page is not available in a "
-msgstr "This page is not available in a "
-
-#: lib/joinform.php:114
-msgid "Join"
-msgstr "Join"
-
-#: lib/leaveform.php:114
-msgid "Leave"
-msgstr "Leave"
-
-#: lib/logingroupnav.php:76 lib/logingroupnav.php:80
-msgid "Login with a username and password"
-msgstr "Login with a username and password"
-
-#: lib/logingroupnav.php:79 lib/logingroupnav.php:86
-msgid "Sign up for a new account"
-msgstr "Sign up for a new account"
-
-#: lib/logingroupnav.php:82
-msgid "Login or register with OpenID"
-msgstr "Login or register with OpenID"
-
-#: lib/mail.php:175
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-msgstr ""
-"Hey, %s.\n"
-"\n"
-
-#: lib/mail.php:236
-#, php-format
-msgid "%1$s is now listening to "
-msgstr "%1$s is now listening to "
-
-#: lib/mail.php:254 lib/mail.php:253
-#, php-format
-msgid "Location: %s\n"
-msgstr "Location: %s\n"
-
-#: lib/mail.php:256 lib/mail.php:255
-#, php-format
-msgid "Homepage: %s\n"
-msgstr "Homepage: %s\n"
-
-#: lib/mail.php:258 lib/mail.php:257
-#, php-format
-msgid ""
-"Bio: %s\n"
-"\n"
-msgstr ""
-"Bio: %s\n"
-"\n"
-
-#: lib/mail.php:461 lib/mail.php:462
-#, php-format
-msgid "You've been nudged by %s"
-msgstr "You've been nudged by %s"
-
-#: lib/mail.php:465
-#, php-format
-msgid "%1$s (%2$s) is wondering what you are up to "
-msgstr "%1$s (%2$s) is wondering what you are up to "
-
-#: lib/mail.php:555
-#, php-format
-msgid "%1$s just added your notice from %2$s"
-msgstr "%1$s just added your notice from %2$s"
-
-#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231
-#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388
-msgid "From"
-msgstr "From"
-
-#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120
-msgid "Send a direct notice"
-msgstr "Send a direct notice"
-
-#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145
-msgid "Send a notice"
-msgstr "Send a notice"
-
-#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162
-#: lib/noticeform.php:173
-msgid "Available characters"
-msgstr "Available characters"
-
-#: lib/noticelist.php:426 lib/noticelist.php:429
-msgid "in reply to"
-msgstr "in reply to"
-
-#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451
-#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461
-#: lib/noticelist.php:498
-msgid "Reply to this notice"
-msgstr "Reply to this notice"
-
-#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462
-#: lib/noticelist.php:499
-msgid "Reply"
-msgstr "Reply"
-
-#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476
-#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483
-#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522
-msgid "Delete this notice"
-msgstr "Delete this notice"
-
-#: lib/noticelist.php:474 actions/avatarsettings.php:148
-#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522
-msgid "Delete"
-msgstr "Delete"
-
-#: lib/nudgeform.php:116
-msgid "Nudge this user"
-msgstr "Nudge this user"
-
-#: lib/nudgeform.php:128
-msgid "Nudge"
-msgstr "Nudge"
-
-#: lib/nudgeform.php:128
-msgid "Send a nudge to this user"
-msgstr "Send a nudge to this user"
-
-#: lib/personaltagcloudsection.php:56
-#, php-format
-msgid "Tags in %s's notices"
-msgstr "Tags in %s's notices"
-
-#: lib/profilelist.php:182 lib/profilelist.php:180
-#: lib/subscriptionlist.php:126
-msgid "(none)"
-msgstr "(none)"
-
-#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78
-msgid "Public"
-msgstr "Public"
-
-#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82
-msgid "User groups"
-msgstr "User groups"
-
-#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83
-#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
-msgid "Recent tags"
-msgstr "Recent tags"
-
-#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88
-msgid "Featured"
-msgstr "Featured"
-
-#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92
-msgid "Popular"
-msgstr "Popular"
-
-#: lib/searchgroupnav.php:82
-msgid "Notice"
-msgstr "Notice"
-
-#: lib/searchgroupnav.php:85
-msgid "Find groups on this site"
-msgstr "Find groups on this site"
-
-#: lib/section.php:89
-msgid "Untitled section"
-msgstr "Untitled section"
-
-#: lib/subgroupnav.php:81 lib/subgroupnav.php:83
-#, php-format
-msgid "People %s subscribes to"
-msgstr "People %s subscribes to"
-
-#: lib/subgroupnav.php:89 lib/subgroupnav.php:91
-#, php-format
-msgid "People subscribed to %s"
-msgstr "People subscribed to %s"
-
-#: lib/subgroupnav.php:97 lib/subgroupnav.php:99
-#, php-format
-msgid "Groups %s is a member of"
-msgstr "Groups %s is a member of"
-
-#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106
-#: lib/action.php:440
-#, php-format
-msgid "Invite friends and colleagues to join you on %s"
-msgstr "Invite friends and colleagues to join you on %s"
-
-#: lib/subs.php:53 lib/subs.php:52
-msgid "User has blocked you."
-msgstr "User has blocked you."
-
-#: lib/subscribeform.php:115 lib/subscribeform.php:139
-#: actions/userauthorization.php:178 actions/userauthorization.php:210
-msgid "Subscribe to this user"
-msgstr "Subscribe to this user"
-
-#: lib/tagcloudsection.php:56
-msgid "None"
-msgstr "None"
-
-#: lib/topposterssection.php:74
-msgid "Top posters"
-msgstr "Top posters"
-
-#: lib/unblockform.php:120 lib/unblockform.php:150
-#: actions/blockedfromgroup.php:313
-msgid "Unblock this user"
-msgstr "Unblock this user"
-
-#: lib/unblockform.php:150 actions/blockedfromgroup.php:313
-msgid "Unblock"
-msgstr "Unblock"
-
-#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
-msgid "Unsubscribe from this user"
-msgstr "Unsubscribe from this user"
-
-#: actions/all.php:77 actions/all.php:59 actions/all.php:99
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "Feed for friends of %s"
-
-#: actions/all.php:82 actions/all.php:64 actions/all.php:107
-#, fuzzy, php-format
-msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "Feed for friends of %s"
-
-#: actions/all.php:87 actions/all.php:69 actions/all.php:115
-#, fuzzy, php-format
-msgid "Feed for friends of %s (Atom)"
-msgstr "Feed for friends of %s"
-
-#: actions/all.php:112 actions/all.php:125 actions/all.php:165
-#, fuzzy
-msgid "You and friends"
-msgstr "%s and friends"
-
-#: actions/avatarsettings.php:78
-#, fuzzy, php-format
-msgid "You can upload your personal avatar. The maximum file size is %s."
-msgstr "You can upload your personal avatar."
-
-#: actions/avatarsettings.php:373 actions/avatarsettings.php:387
-#, fuzzy
-msgid "Avatar deleted."
-msgstr "Avatar updated."
-
-#: actions/block.php:129 actions/block.php:136
-msgid ""
-"Are you sure you want to block this user? Afterwards, they will be "
-"unsubscribed from you, unable to subscribe to you in the future, and you "
-"will not be notified of any @-replies from them."
-msgstr ""
-
-#: actions/deletenotice.php:73 actions/deletenotice.php:103
-#, fuzzy
-msgid ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-msgstr ""
-"You are about to permanently delete a notice. Once this is done, it cannot "
-"be undone."
-
-#: actions/deletenotice.php:127 actions/deletenotice.php:157
-#, fuzzy
-msgid "There was a problem with your session token. Try again, please."
-msgstr "There was a problem with your session token. Try again, please."
-
-#: actions/emailsettings.php:168 actions/emailsettings.php:174
-#, fuzzy
-msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr "Send me e-mail when someone sends me a private message."
-
-#: actions/facebookhome.php:193 actions/facebookhome.php:187
-#, php-format
-msgid ""
-"If you would like the %s app to automatically update your Facebook status "
-"with your latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/facebookhome.php:217 actions/facebookhome.php:211
-#, php-format
-msgid "Okay, do it!"
-msgstr ""
-
-#: actions/facebooksettings.php:124
-#, php-format
-msgid ""
-"If you would like %s to automatically update your Facebook status with your "
-"latest notice, you need to give it permission."
-msgstr ""
-
-#: actions/grouplogo.php:155 actions/grouplogo.php:150
-#, fuzzy, php-format
-msgid ""
-"You can upload a logo image for your group. The maximum file size is %s."
-msgstr "You can upload a logo image for your group."
-
-#: actions/grouplogo.php:367 actions/grouplogo.php:362
-#, fuzzy
-msgid "Pick a square area of the image to be the logo."
-msgstr "Pick a square area of the image to be your avatar"
-
-#: actions/grouprss.php:136 actions/grouprss.php:137
-#, fuzzy, php-format
-msgid "Microblog by %s group"
-msgstr "Microblog by %s"
-
-#: actions/groupsearch.php:57 actions/groupsearch.php:52
-#, fuzzy, php-format
-msgid ""
-"Search for groups on %%site.name%% by their name, location, or description. "
-"Separate the terms by spaces; they must be 3 characters or more."
-msgstr ""
-"Search for people on %%site.name%% by their name, location, or interests. "
-"Separate the terms by spaces; they must be 3 characters or more."
-
-#: actions/groups.php:90
-#, php-format
-msgid ""
-"%%%%site.name%%%% groups let you find and talk with people of similar "
-"interests. After you join a group you can send messages to all other members "
-"using the syntax \"!groupname\". Don't see a group you like? Try [searching "
-"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
-"%%%%)"
-msgstr ""
-
-#: actions/newmessage.php:102
-#, fuzzy
-msgid "Only logged-in users can send direct messages."
-msgstr "Error sending direct message."
-
-#: actions/noticesearch.php:91
-#, fuzzy, php-format
-msgid "Search results for \"%s\" on %s"
-msgstr " Search Stream for \"%s\""
-
-#: actions/openidlogin.php:66
-#, fuzzy, php-format
-msgid ""
-"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
-"before changing your settings."
-msgstr ""
-"For security reasons, please re-enter your user name and password before "
-"changing your settings."
-
-#: actions/public.php:125 actions/public.php:133 actions/public.php:151
-#, fuzzy
-msgid "Public Stream Feed (RSS 1.0)"
-msgstr "Public Stream Feed"
-
-#: actions/public.php:130 actions/public.php:138 actions/public.php:155
-#, fuzzy
-msgid "Public Stream Feed (RSS 2.0)"
-msgstr "Public Stream Feed"
-
-#: actions/public.php:135 actions/public.php:143 actions/public.php:159
-#, fuzzy
-msgid "Public Stream Feed (Atom)"
-msgstr "Public Stream Feed"
-
-#: actions/public.php:210 actions/public.php:241 actions/public.php:233
-#, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool. [Join now](%%action.register%%) to share notices about yourself with "
-"friends, family, and colleagues! ([Read more](%%doc.help%%))"
-msgstr ""
-
-#: actions/register.php:286 actions/register.php:329
-#, php-format
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? "
-"Try our [OpenID registration](%%action.openidlogin%%)!)"
-msgstr ""
-
-#: actions/register.php:432 actions/register.php:479 actions/register.php:489
-#: actions/register.php:495
-msgid "Creative Commons Attribution 3.0"
-msgstr ""
-
-#: actions/register.php:433 actions/register.php:480 actions/register.php:490
-#: actions/register.php:496
-#, fuzzy
-msgid ""
-" except this private data: password, email address, IM address, and phone "
-"number."
-msgstr ""
-" except this private data: password, e-mail address, IM address, phone "
-"number."
-
-#: actions/showgroup.php:378 actions/showgroup.php:424
-#: actions/showgroup.php:432
-#, fuzzy
-msgid "Created"
-msgstr "Create"
-
-#: actions/showgroup.php:393 actions/showgroup.php:440
-#: actions/showgroup.php:448
-#, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. [Join now](%%%%action.register%%%%) to become part "
-"of this group and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/showstream.php:147
-#, fuzzy
-msgid "Your profile"
-msgstr "Group profile"
-
-#: actions/showstream.php:149
-#, fuzzy, php-format
-msgid "%s's profile"
-msgstr "'s profile"
-
-#: actions/showstream.php:163 actions/showstream.php:128
-#: actions/showstream.php:129
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 1.0)"
-msgstr "Notice feed for %s"
-
-#: actions/showstream.php:170 actions/showstream.php:135
-#: actions/showstream.php:136
-#, fuzzy, php-format
-msgid "Notice feed for %s (RSS 2.0)"
-msgstr "Notice feed for %s"
-
-#: actions/showstream.php:177 actions/showstream.php:142
-#: actions/showstream.php:143
-#, fuzzy, php-format
-msgid "Notice feed for %s (Atom)"
-msgstr "Notice feed for %s"
-
-#: actions/showstream.php:182 actions/showstream.php:147
-#: actions/showstream.php:148
-#, fuzzy, php-format
-msgid "FOAF for %s"
-msgstr "Outbox for %s"
-
-#: actions/showstream.php:237 actions/showstream.php:202
-#: actions/showstream.php:234 lib/userprofile.php:116
-#, fuzzy
-msgid "Edit Avatar"
-msgstr "Avatar"
-
-#: actions/showstream.php:316 actions/showstream.php:281
-#: actions/showstream.php:366 lib/userprofile.php:248
-#, fuzzy
-msgid "Edit profile settings"
-msgstr "Profile settings"
-
-#: actions/showstream.php:317 actions/showstream.php:282
-#: actions/showstream.php:367 lib/userprofile.php:249
-msgid "Edit"
-msgstr ""
-
-#: actions/showstream.php:542 actions/showstream.php:388
-#: actions/showstream.php:487 actions/showstream.php:234
-#, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
-"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
-msgstr ""
-
-#: actions/smssettings.php:335 actions/smssettings.php:347
-#, fuzzy
-msgid ""
-"A confirmation code was sent to the phone number you added. Check your phone "
-"for the code and instructions on how to use it."
-msgstr ""
-"A confirmation code was sent to the phone number you added. Check your inbox "
-"(and spam box!) for the code and instructions on how to use it."
-
-#: actions/twitapifavorites.php:171 lib/mail.php:556
-#: actions/twitapifavorites.php:222
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"In case you forgot, you can see the text of your notice here:\n"
-"\n"
-"%3$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Faithfully yours,\n"
-"%5$s\n"
-msgstr ""
-
-#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82
-#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97
-#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112
-#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
-#: actions/apigroupleave.php:99 actions/apigrouplist.php:90
-#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79
-#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81
-#: actions/apiaccountupdateprofileimage.php:91
-#: actions/apiaccountupdateprofileimage.php:105
-#: actions/apistatusesupdate.php:139
-#, fuzzy
-msgid "No such user!"
-msgstr "No such user"
-
-#: actions/twittersettings.php:72
-#, fuzzy
-msgid ""
-"Add your Twitter account to automatically send your notices to Twitter, and "
-"subscribe to Twitter friends already here."
-msgstr ""
-"Add your Twitter account to automatically send your notices to Twitter, "
-
-#: actions/twittersettings.php:345 actions/twittersettings.php:362
-#, fuzzy, php-format
-msgid "Unable to retrieve account information For \"%s\" from Twitter."
-msgstr "Unable to retrieve account information for \"%s\" from Twitter."
-
-#: actions/userauthorization.php:86 actions/userauthorization.php:81
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Reject\"."
-msgstr ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-
-#: actions/usergroups.php:131 actions/usergroups.php:130
-#, fuzzy
-msgid "Search for more groups"
-msgstr "Search for people or text"
-
-#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194
-#, fuzzy
-msgid ""
-"Too many duplicate messages too quickly; take a breather and post again in a "
-"few minutes."
-msgstr ""
-"Too many notices too fast; take a breather and post again in a few minutes."
-
-#: lib/action.php:406 lib/action.php:425
-#, fuzzy
-msgid "Connect to SMS, Twitter"
-msgstr "Connect to IM, SMS, Twitter"
-
-#: lib/action.php:671 lib/action.php:721 lib/action.php:736
-#, fuzzy
-msgid "Badge"
-msgstr "Nudge"
-
-#: lib/command.php:113 lib/command.php:106 lib/command.php:126
-#, php-format
-msgid ""
-"Subscriptions: %1$s\n"
-"Subscribers: %2$s\n"
-"Notices: %3$s"
-msgstr ""
-
-#: lib/dberroraction.php:60
-msgid "Database error"
-msgstr ""
-
-#: lib/facebookaction.php:271 lib/facebookaction.php:273
-#, fuzzy, php-format
-msgid ""
-"To use the %s Facebook Application you need to login with your username and "
-"password. Don't have a username yet? "
-msgstr "To use the %s Facebook Application you need to login "
-
-#: lib/feed.php:85
-msgid "RSS 1.0"
-msgstr ""
-
-#: lib/feed.php:87
-msgid "RSS 2.0"
-msgstr ""
-
-#: lib/feed.php:89
-msgid "Atom"
-msgstr ""
-
-#: lib/feed.php:91
-msgid "FOAF"
-msgstr ""
-
-#: lib/imagefile.php:75
-#, php-format
-msgid "That file is too big. The maximum file size is %d."
-msgstr ""
-
-#: lib/mail.php:175 lib/mail.php:174
-#, php-format
-msgid ""
-"Hey, %s.\n"
-"\n"
-"Someone just entered this email address on %s.\n"
-"\n"
-"If it was you, and you want to confirm your entry, use the URL below:\n"
-"\n"
-"\t%s\n"
-"\n"
-"If not, just ignore this message.\n"
-"\n"
-"Thanks for your time, \n"
-"%s\n"
-msgstr ""
-
-#: lib/mail.php:241 lib/mail.php:240
-#, fuzzy, php-format
-msgid ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"%4$s%5$s%6$s\n"
-"Faithfully yours,\n"
-"%7$s.\n"
-"\n"
-"----\n"
-"Change your email address or notification options at %8$s\n"
-msgstr ""
-"%1$s is now listening to your notices on %2$s.\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"Faithfully yours,\n"
-"%4$s.\n"
-
-#: lib/mail.php:466
-#, php-format
-msgid ""
-"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
-"to post some news.\n"
-"\n"
-"So let's hear from you :)\n"
-"\n"
-"%3$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%4$s\n"
-msgstr ""
-
-#: lib/mail.php:513
-#, php-format
-msgid ""
-"%1$s (%2$s) sent you a private message:\n"
-"\n"
-"------------------------------------------------------\n"
-"%3$s\n"
-"------------------------------------------------------\n"
-"\n"
-"You can reply to their message here:\n"
-"\n"
-"%4$s\n"
-"\n"
-"Don't reply to this email; it won't get to them.\n"
-"\n"
-"With kind regards,\n"
-"%5$s\n"
-msgstr ""
-
-#: lib/mail.php:598 lib/mail.php:600
-#, php-format
-msgid "%s sent a notice to your attention"
-msgstr ""
-
-#: lib/mail.php:600 lib/mail.php:602
-#, php-format
-msgid ""
-"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
-"\n"
-"The notice is here:\n"
-"\n"
-"\t%3$s\n"
-"\n"
-"It reads:\n"
-"\n"
-"\t%4$s\n"
-"\n"
-"You can reply back here:\n"
-"\n"
-"\t%5$s\n"
-"\n"
-"The list of all @-replies for you here:\n"
-"\n"
-"%6$s\n"
-"\n"
-"Faithfully yours,\n"
-"%2$s\n"
-"\n"
-"P.S. You can turn off these email notifications here: %7$s\n"
-msgstr ""
-
-#: lib/searchaction.php:122 lib/searchaction.php:120
-#, fuzzy
-msgid "Search site"
-msgstr "Search"
-
-#: lib/section.php:106
-msgid "More..."
-msgstr ""
-
-#: actions/all.php:80 actions/all.php:127
-#, php-format
-msgid ""
-"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr ""
-
-#: actions/all.php:85 actions/all.php:132
-#, php-format
-msgid ""
-"Try subscribing to more people, [join a group](%%action.groups%%) or post "
-"something yourself."
-msgstr ""
-
-#: actions/all.php:87 actions/all.php:134
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) from his profile or [post something to his "
-"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361
-#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455
-#: actions/showstream.php:202
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
-"post a notice to his or her attention."
-msgstr ""
-
-#: actions/attachment.php:73
-#, fuzzy
-msgid "No such attachment."
-msgstr "No such document."
-
-#: actions/block.php:149
-#, fuzzy
-msgid "Do not block this user from this group"
-msgstr "A list of the users in this group."
-
-#: actions/block.php:150
-#, fuzzy
-msgid "Block this user from this group"
-msgstr "A list of the users in this group."
-
-#: actions/blockedfromgroup.php:90
-#, fuzzy, php-format
-msgid "%s blocked profiles"
-msgstr "User profile"
-
-#: actions/blockedfromgroup.php:93
-#, fuzzy, php-format
-msgid "%s blocked profiles, page %d"
-msgstr "%s and friends, page %d"
-
-#: actions/blockedfromgroup.php:108
-#, fuzzy
-msgid "A list of the users blocked from joining this group."
-msgstr "A list of the users in this group."
-
-#: actions/blockedfromgroup.php:281
-#, fuzzy
-msgid "Unblock user from group"
-msgstr "Unblock user failed."
-
-#: actions/conversation.php:99
-#, fuzzy
-msgid "Conversation"
-msgstr "Confirmation code"
-
-#: actions/deletenotice.php:115 actions/deletenotice.php:145
-#, fuzzy
-msgid "Do not delete this notice"
-msgstr "Can't delete this notice."
-
-#: actions/editgroup.php:214 actions/newgroup.php:164
-#: actions/apigroupcreate.php:291 actions/editgroup.php:215
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
-msgstr ""
-
-#: actions/editgroup.php:223 actions/newgroup.php:173
-#: actions/apigroupcreate.php:312 actions/editgroup.php:224
-#: actions/newgroup.php:168
-#, fuzzy, php-format
-msgid "Invalid alias: \"%s\""
-msgstr "Invalid tag: \"%s\""
-
-#: actions/editgroup.php:227 actions/newgroup.php:177
-#: actions/apigroupcreate.php:321 actions/editgroup.php:228
-#: actions/newgroup.php:172
-#, fuzzy, php-format
-msgid "Alias \"%s\" already in use. Try another one."
-msgstr "Nickname already in use. Try another one."
-
-#: actions/editgroup.php:233 actions/newgroup.php:183
-#: actions/apigroupcreate.php:334 actions/editgroup.php:234
-#: actions/newgroup.php:178
-msgid "Alias can't be the same as nickname."
-msgstr ""
-
-#: actions/editgroup.php:259 actions/newgroup.php:215
-#: actions/apigroupcreate.php:147 actions/newgroup.php:210
-#, fuzzy
-msgid "Could not create aliases."
-msgstr "Could not create favourite."
-
-#: actions/favorited.php:150
-msgid "Favorite notices appear on this page but no one has favorited one yet."
-msgstr ""
-
-#: actions/favorited.php:153
-msgid ""
-"Be the first to add a notice to your favorites by clicking the fave button "
-"next to any notice you like."
-msgstr ""
-
-#: actions/favorited.php:156
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to add a "
-"notice to your favorites!"
-msgstr ""
-
-#: actions/file.php:34
-#, fuzzy
-msgid "No notice id"
-msgstr "New notice"
-
-#: actions/file.php:38
-#, fuzzy
-msgid "No notice"
-msgstr "New notice"
-
-#: actions/file.php:42
-msgid "No attachments"
-msgstr ""
-
-#: actions/file.php:51
-msgid "No uploaded attachments"
-msgstr ""
-
-#: actions/finishopenidlogin.php:211
-#, fuzzy
-msgid "Not a valid invitation code."
-msgstr "Not a valid nickname."
-
-#: actions/groupblock.php:81 actions/groupunblock.php:81
-#: actions/makeadmin.php:81
-#, fuzzy
-msgid "No group specified."
-msgstr "No profile specified."
-
-#: actions/groupblock.php:91
-msgid "Only an admin can block group members."
-msgstr ""
-
-#: actions/groupblock.php:95
-#, fuzzy
-msgid "User is already blocked from group."
-msgstr "User has blocked you."
-
-#: actions/groupblock.php:100
-#, fuzzy
-msgid "User is not a member of group."
-msgstr "You are not a member of that group."
-
-#: actions/groupblock.php:136 actions/groupmembers.php:311
-#: actions/groupmembers.php:314
-#, fuzzy
-msgid "Block user from group"
-msgstr "Block user"
-
-#: actions/groupblock.php:155
-#, php-format
-msgid ""
-"Are you sure you want to block user \"%s\" from the group \"%s\"? They will "
-"be removed from the group, unable to post, and unable to subscribe to the "
-"group in the future."
-msgstr ""
-
-#: actions/groupblock.php:193
-msgid "Database error blocking user from group."
-msgstr ""
-
-#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
-#, fuzzy
-msgid "You must be logged in to edit a group."
-msgstr "You must be logged in to create a group."
-
-#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
-#, fuzzy
-msgid "Group design"
-msgstr "Groups"
-
-#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152
-msgid ""
-"Customize the way your group looks with a background image and a colour "
-"palette of your choice."
-msgstr ""
-
-#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186
-#: lib/designsettings.php:440 lib/designsettings.php:470
-#: actions/groupdesignsettings.php:262 lib/designsettings.php:431
-#: lib/designsettings.php:461 lib/designsettings.php:434
-#: lib/designsettings.php:464
-#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Couldn't update user."
-
-#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
-#, fuzzy
-msgid "Unable to save your design settings!"
-msgstr "Unable to save your Twitter settings!"
-
-#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231
-#: actions/groupdesignsettings.php:307
-#, fuzzy
-msgid "Design preferences saved."
-msgstr "Sync preferences saved."
-
-#: actions/groupmembers.php:438 actions/groupmembers.php:441
-#, fuzzy
-msgid "Make user an admin of the group"
-msgstr "You must be an admin to edit the group"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-#, fuzzy
-msgid "Make Admin"
-msgstr "Admin"
-
-#: actions/groupmembers.php:470 actions/groupmembers.php:473
-msgid "Make this user an admin"
-msgstr ""
-
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
-#, fuzzy
-msgid "No results."
-msgstr "No results"
-
-#: actions/groupsearch.php:82
-#, php-format
-msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr ""
-
-#: actions/groupsearch.php:85
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and [create the group](%%"
-"action.newgroup%%) yourself!"
-msgstr ""
-
-#: actions/groupunblock.php:91
-msgid "Only an admin can unblock group members."
-msgstr ""
-
-#: actions/groupunblock.php:95
-#, fuzzy
-msgid "User is not blocked from group."
-msgstr "User has blocked you."
-
-#: actions/invite.php:39
-msgid "Invites have been disabled."
-msgstr ""
-
-#: actions/joingroup.php:100 actions/apigroupjoin.php:119
-#: actions/joingroup.php:95 lib/command.php:221
-msgid "You have been blocked from that group by the admin."
-msgstr ""
-
-#: actions/makeadmin.php:91
-msgid "Only an admin can make another user an admin."
-msgstr ""
-
-#: actions/makeadmin.php:95
-#, php-format
-msgid "%s is already an admin for group \"%s\"."
-msgstr ""
-
-#: actions/makeadmin.php:132
-#, php-format
-msgid "Can't get membership record for %s in group %s"
-msgstr ""
-
-#: actions/makeadmin.php:145
-#, php-format
-msgid "Can't make %s an admin for group %s"
-msgstr ""
-
-#: actions/newmessage.php:178 actions/newmessage.php:181
-#, fuzzy
-msgid "Message sent"
-msgstr "Message"
-
-#: actions/newnotice.php:93 lib/designsettings.php:281
-#: actions/newnotice.php:94 actions/apiaccountupdateprofileimage.php:97
-#: actions/apistatusesupdate.php:122 actions/avatarsettings.php:254
-#: lib/designsettings.php:283
-#, php-format
-msgid ""
-"The server was unable to handle that much POST data (%s bytes) due to its "
-"current configuration."
-msgstr ""
-
-#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270
-#, php-format
-msgid " Try using another %s format."
-msgstr ""
-
-#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275
-#, php-format
-msgid "%s is not a supported filetype on this server."
-msgstr ""
-
-#: actions/newnotice.php:205 lib/mediafile.php:142
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: actions/newnotice.php:208 lib/mediafile.php:147
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: actions/newnotice.php:211 lib/mediafile.php:152
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: actions/newnotice.php:214 lib/mediafile.php:159
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: actions/newnotice.php:217 lib/mediafile.php:162
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: actions/newnotice.php:220 lib/mediafile.php:165
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: actions/newnotice.php:230 scripts/maildaemon.php:85
-#, fuzzy
-msgid "Couldn't save file."
-msgstr "Couldn't save profile."
-
-#: actions/newnotice.php:246 scripts/maildaemon.php:101
-msgid "Max notice size is 140 chars, including attachment URL."
-msgstr ""
-
-#: actions/newnotice.php:297
-msgid "Somehow lost the login in saveFile"
-msgstr ""
-
-#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196
-#: lib/mediafile.php:233
-msgid "File could not be moved to destination directory."
-msgstr ""
-
-#: actions/newnotice.php:336 actions/newnotice.php:360
-#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98
-#: lib/mediafile.php:123
-msgid "There was a database error while saving your file. Please try again."
-msgstr ""
-
-#: actions/noticesearch.php:121
-#, php-format
-msgid ""
-"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
-"status_textarea=%s)!"
-msgstr ""
-
-#: actions/noticesearch.php:124
-#, php-format
-msgid ""
-"Why not [register an account](%%%%action.register%%%%) and be the first to "
-"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-msgstr ""
-
-#: actions/openidsettings.php:70
-#, fuzzy, php-format
-msgid ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-msgstr ""
-"[OpenID](%%doc.openid%%) lets you log into many sites with the same user "
-"account. Manage your associated OpenIDs from here."
-
-#: actions/othersettings.php:110 actions/othersettings.php:117
-msgid "Shorten URLs with"
-msgstr ""
-
-#: actions/othersettings.php:115 actions/othersettings.php:122
-#, fuzzy
-msgid "View profile designs"
-msgstr "Profile settings"
-
-#: actions/othersettings.php:116 actions/othersettings.php:123
-msgid "Show or hide profile designs."
-msgstr ""
-
-#: actions/public.php:82 actions/public.php:83
-#, php-format
-msgid "Beyond the page limit (%s)"
-msgstr ""
-
-#: actions/public.php:179
-#, php-format
-msgid ""
-"This is the public timeline for %%site.name%% but no one has posted anything "
-"yet."
-msgstr ""
-
-#: actions/public.php:182
-msgid "Be the first to post!"
-msgstr ""
-
-#: actions/public.php:186
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post!"
-msgstr ""
-
-#: actions/public.php:245 actions/public.php:238
-#, fuzzy, php-format
-msgid ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service based on the Free Software [StatusNet](http://status.net/) "
-"tool."
-msgstr ""
-"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
-"blogging) service "
-
-#: actions/publictagcloud.php:69
-#, php-format
-msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
-msgstr ""
-
-#: actions/publictagcloud.php:72
-msgid "Be the first to post one!"
-msgstr ""
-
-#: actions/publictagcloud.php:75
-#, php-format
-msgid ""
-"Why not [register an account](%%action.register%%) and be the first to post "
-"one!"
-msgstr ""
-
-#: actions/recoverpassword.php:152
-#, fuzzy
-msgid ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"email address you have stored in your account."
-msgstr ""
-"If you've forgotten or lost your password, you can get a new one sent to the "
-"e-mail address you have stored in your account."
-
-#: actions/recoverpassword.php:158
-#, fuzzy
-msgid "You've been identified. Enter a new password below. "
-msgstr "You've been identified. Enter a new password below. "
-
-#: actions/recoverpassword.php:188
-#, fuzzy
-msgid "Password recover"
-msgstr "Password recovery requested"
-
-#: actions/register.php:86 actions/register.php:92
-#, fuzzy
-msgid "Sorry, invalid invitation code."
-msgstr "Error with confirmation code."
-
-#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124
-#, fuzzy
-msgid "Subscribe to a remote user"
-msgstr "Subscribe to this user"
-
-#: actions/replies.php:179 actions/replies.php:198
-#, php-format
-msgid ""
-"This is the timeline showing replies to %s but %s hasn't received a notice "
-"to his attention yet."
-msgstr ""
-
-#: actions/replies.php:184 actions/replies.php:203
-#, php-format
-msgid ""
-"You can engage other users in a conversation, subscribe to more people or "
-"[join groups](%%action.groups%%)."
-msgstr ""
-
-#: actions/replies.php:186 actions/replies.php:205
-#, php-format
-msgid ""
-"You can try to [nudge %s](../%s) or [post something to his or her attention]"
-"(%%%%action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showfavorites.php:79
-#, fuzzy, php-format
-msgid "%s's favorite notices, page %d"
-msgstr "%s favourite notices, page %d"
-
-#: actions/showfavorites.php:170 actions/showfavorites.php:205
-msgid ""
-"You haven't chosen any favorite notices yet. Click the fave button on "
-"notices you like to bookmark them for later or shed a spotlight on them."
-msgstr ""
-
-#: actions/showfavorites.php:172 actions/showfavorites.php:207
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Post something interesting "
-"they would add to their favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:176
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to thier favorites :)"
-msgstr ""
-
-#: actions/showfavorites.php:226 actions/showfavorites.php:242
-msgid "This is a way to share what you like."
-msgstr ""
-
-#: actions/showgroup.php:279 lib/groupeditform.php:178
-#: actions/showgroup.php:284 lib/groupeditform.php:184
-msgid "Aliases"
-msgstr ""
-
-#: actions/showgroup.php:323 actions/showgroup.php:328
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 1.0)"
-msgstr "Notice feed for %s group"
-
-#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334
-#, fuzzy, php-format
-msgid "Notice feed for %s group (RSS 2.0)"
-msgstr "Notice feed for %s group"
-
-#: actions/showgroup.php:337 actions/showgroup.php:340
-#, fuzzy, php-format
-msgid "Notice feed for %s group (Atom)"
-msgstr "Notice feed for %s group"
-
-#: actions/showgroup.php:446 actions/showgroup.php:454
-#, fuzzy, php-format
-msgid ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. Its members share short messages about "
-"their life and interests. "
-msgstr ""
-"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
-
-#: actions/showgroup.php:474 actions/showgroup.php:482
-#, fuzzy
-msgid "Admins"
-msgstr "Admin"
-
-#: actions/shownotice.php:101
-#, fuzzy
-msgid "Not a local notice"
-msgstr "Not a local user."
-
-#: actions/showstream.php:72 actions/showstream.php:73
-#, fuzzy, php-format
-msgid " tagged %s"
-msgstr "Notices tagged with %s"
-
-#: actions/showstream.php:121 actions/showstream.php:122
-#, fuzzy, php-format
-msgid "Notice feed for %s tagged %s (RSS 1.0)"
-msgstr "Notice feed for %s group"
-
-#: actions/showstream.php:350 actions/showstream.php:444
-#: actions/showstream.php:191
-#, php-format
-msgid "This is the timeline for %s but %s hasn't posted anything yet."
-msgstr ""
-
-#: actions/showstream.php:355 actions/showstream.php:449
-#: actions/showstream.php:196
-msgid ""
-"Seen anything interesting recently? You haven't posted any notices yet, now "
-"would be a good time to start :)"
-msgstr ""
-
-#: actions/showstream.php:357 actions/showstream.php:451
-#: actions/showstream.php:198
-#, php-format
-msgid ""
-"You can try to nudge %s or [post something to his or her attention](%%%%"
-"action.newnotice%%%%?status_textarea=%s)."
-msgstr ""
-
-#: actions/showstream.php:393 actions/showstream.php:492
-#: actions/showstream.php:239
-#, fuzzy, php-format
-msgid ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
-"[StatusNet](http://status.net/) tool. "
-msgstr ""
-"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
-"wikipedia.org/wiki/Micro-blogging) service "
+msgid "These are the people who listen to %s's notices."
+msgstr "These are the people who listen to %s's notices."
#: actions/subscribers.php:108
msgid ""
@@ -6731,7 +2988,26 @@ msgid ""
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:115 actions/subscriptions.php:121
+#: actions/subscriptions.php:52
+#, php-format
+msgid "%s subscriptions"
+msgstr "%s subscriptions"
+
+#: actions/subscriptions.php:54
+#, php-format
+msgid "%s subscriptions, page %d"
+msgstr "%s subscriptions, page %d"
+
+#: actions/subscriptions.php:65
+msgid "These are the people whose notices you listen to."
+msgstr "These are the people whose notices you listen to."
+
+#: actions/subscriptions.php:69
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "These are the people whose notices %s listens to."
+
+#: actions/subscriptions.php:121
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -6741,73 +3017,222 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:117 actions/subscriptions.php:121
#: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s is now listening to "
-#: actions/tag.php:77 actions/tag.php:86
+#: actions/subscriptions.php:194
+msgid "Jabber"
+msgstr "Jabber"
+
+#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115
+msgid "SMS"
+msgstr "SMS"
+
+#: actions/tagother.php:33
+msgid "Not logged in"
+msgstr "Not logged in"
+
+#: actions/tagother.php:39
+msgid "No id argument."
+msgstr "No id argument."
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr "Tag %s"
+
+#: actions/tagother.php:77 lib/userprofile.php:75
+msgid "User profile"
+msgstr "User profile"
+
+#: actions/tagother.php:81 lib/userprofile.php:102
+msgid "Photo"
+msgstr "Photo"
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr "Tag user"
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+
+#: actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Could not save tags."
+
+#: actions/tagother.php:236
+msgid "Use this form to add tags to your subscribers or subscriptions."
+msgstr "Use this form to add tags to your subscribers or subscriptions."
+
+#: actions/tag.php:68
+#, php-format
+msgid "Notices tagged with %s, page %d"
+msgstr "Notices tagged with %s, page %d"
+
+#: actions/tag.php:86
#, fuzzy, php-format
msgid "Notice feed for tag %s (RSS 1.0)"
msgstr "Notice feed for %s"
-#: actions/tag.php:91 actions/tag.php:98
+#: actions/tag.php:92
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Notice feed for %s"
+
+#: actions/tag.php:98
#, fuzzy, php-format
msgid "Notice feed for tag %s (Atom)"
msgstr "Notice feed for %s"
-#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
-#, fuzzy
-msgid "This status is already a favorite!"
-msgstr "This notice is already a favourite!"
+#: actions/tagrss.php:35
+msgid "No such tag."
+msgstr "No such tag."
-#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
-#, fuzzy
-msgid "That status is not a favorite!"
-msgstr "This notice is not a favourite!"
+#: actions/twitapitrends.php:87
+msgid "API method under construction."
+msgstr "API method under construction."
-#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200
-#: actions/apifriendshipsshow.php:135
-#, fuzzy
-msgid "Could not determine source user."
-msgstr "Could not retrieve public stream."
+#: actions/unsubscribe.php:77
+msgid "No profile id in request."
+msgstr "No profile id in request."
-#: actions/twitapifriendships.php:215
-#, fuzzy
-msgid "Target user not specified."
-msgstr "No recipient specified."
+#: actions/unsubscribe.php:84
+msgid "No profile with that id."
+msgstr "No profile with that id."
-#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
-#, fuzzy
-msgid "Could not find target user."
-msgstr "Couldn't find any statuses."
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr "Unsubscribed"
-#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
-#, fuzzy, php-format
-msgid "%1$s / Updates mentioning %2$s"
-msgstr "%1$s / Updates replying to %2$s"
-
-#: actions/twitapitags.php:74 actions/apitimelinetag.php:107
-#: actions/tagrss.php:64
-#, fuzzy, php-format
-msgid "Updates tagged with %1$s on %2$s!"
-msgstr "Updates from %1$s on %2$s!"
-
-#: actions/twittersettings.php:165
-msgid "Import my Friends Timeline."
+#: actions/updateprofile.php:62 actions/userauthorization.php:330
+#, php-format
+msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
msgstr ""
-#: actions/userauthorization.php:158 actions/userauthorization.php:188
+#: actions/userauthorization.php:105
+msgid "Authorize subscription"
+msgstr "Authorise subscription"
+
+#: actions/userauthorization.php:110
+#, fuzzy
+msgid ""
+"Please check these details to make sure that you want to subscribe to this "
+"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
+"click “Reject”."
+msgstr ""
+"Please check these details to make sure that you want to subscribe to this "
+"user's notices. If you didn't just ask to subscribe to someone's notices, "
+"click \"Cancel\"."
+
+#: actions/userauthorization.php:188
#, fuzzy
msgid "License"
msgstr "licence."
-#: actions/userauthorization.php:179 actions/userauthorization.php:212
+#: actions/userauthorization.php:209
+msgid "Accept"
+msgstr "Accept"
+
+#: actions/userauthorization.php:210 lib/subscribeform.php:115
+#: lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscribe to this user"
+
+#: actions/userauthorization.php:211
+msgid "Reject"
+msgstr "Reject"
+
+#: actions/userauthorization.php:212
#, fuzzy
msgid "Reject this subscription"
msgstr "%s subscriptions"
+#: actions/userauthorization.php:225
+msgid "No authorization request!"
+msgstr "No authorisation request!"
+
+#: actions/userauthorization.php:247
+msgid "Subscription authorized"
+msgstr "Subscription authorised"
+
+#: actions/userauthorization.php:249
+#, fuzzy
+msgid ""
+"The subscription has been authorized, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to authorize the "
+"subscription. Your subscription token is:"
+msgstr ""
+"The subscription has been authorised, but no callback URL was passed. Check "
+"with the site's instructions for details on how to authorise the "
+"subscription. Your subscription token is:"
+
+#: actions/userauthorization.php:259
+msgid "Subscription rejected"
+msgstr "Subscription rejected"
+
+#: actions/userauthorization.php:261
+#, fuzzy
+msgid ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site’s instructions for details on how to fully reject the "
+"subscription."
+msgstr ""
+"The subscription has been rejected, but no callback URL was passed. Check "
+"with the site's instructions for details on how to fully reject the "
+"subscription."
+
+#: actions/userauthorization.php:296
+#, php-format
+msgid "Listener URI ‘%s’ not found here"
+msgstr ""
+
+#: actions/userauthorization.php:301
+#, php-format
+msgid "Listenee URI ‘%s’ is too long."
+msgstr ""
+
+#: actions/userauthorization.php:307
+#, php-format
+msgid "Listenee URI ‘%s’ is a local user."
+msgstr ""
+
+#: actions/userauthorization.php:322
+#, php-format
+msgid "Profile URL ‘%s’ is for a local user."
+msgstr ""
+
+#: actions/userauthorization.php:338
+#, php-format
+msgid "Avatar URL ‘%s’ is not valid."
+msgstr ""
+
+#: actions/userauthorization.php:343
+#, fuzzy, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "Can't read avatar URL '%s'"
+
+#: actions/userauthorization.php:348
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "Wrong image type for '%s'"
+
+#: actions/userbyid.php:70
+msgid "No id."
+msgstr "No id."
+
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
#, fuzzy
msgid "Profile design"
@@ -6823,6 +3248,16 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#: actions/usergroups.php:64
+#, php-format
+msgid "%s groups, page %d"
+msgstr "%s groups, page %d"
+
+#: actions/usergroups.php:130
+#, fuzzy
+msgid "Search for more groups"
+msgstr "Search for people or text"
+
#: actions/usergroups.php:153
#, fuzzy, php-format
msgid "%s is not a member of any group."
@@ -6833,48 +3268,296 @@ msgstr "You are not a member of that group."
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr ""
-#: classes/File.php:127 classes/File.php:137
+#: classes/File.php:137
#, php-format
msgid ""
"No file may be larger than %d bytes and the file you sent was %d bytes. Try "
"to upload a smaller version."
msgstr ""
-#: classes/File.php:137 classes/File.php:147
+#: classes/File.php:147
#, php-format
msgid "A file this large would exceed your user quota of %d bytes."
msgstr ""
-#: classes/File.php:145 classes/File.php:154
+#: classes/File.php:154
#, php-format
msgid "A file this large would exceed your monthly quota of %d bytes."
msgstr ""
-#: classes/Notice.php:139 classes/Notice.php:179
+#: classes/Message.php:55
+msgid "Could not insert message."
+msgstr "Could not insert message."
+
+#: classes/Message.php:65
+msgid "Could not update message with new URI."
+msgstr "Could not update message with new URI."
+
+#: classes/Notice.php:164
+#, php-format
+msgid "DB error inserting hashtag: %s"
+msgstr "DB error inserting hashtag: %s"
+
+#: classes/Notice.php:179
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Problem saving notice."
-#: classes/User.php:319 classes/User.php:327 classes/User.php:334
+#: classes/Notice.php:183
+msgid "Problem saving notice. Unknown user."
+msgstr "Problem saving notice. Unknown user."
+
+#: classes/Notice.php:188
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+
+#: classes/Notice.php:194
+#, fuzzy
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+
+#: classes/Notice.php:202
+msgid "You are banned from posting notices on this site."
+msgstr "You are banned from posting notices on this site."
+
+#: classes/Notice.php:268 classes/Notice.php:293
+msgid "Problem saving notice."
+msgstr "Problem saving notice."
+
+#: classes/Notice.php:1120
+#, php-format
+msgid "DB error inserting reply: %s"
+msgstr "DB error inserting reply: %s"
+
#: classes/User.php:333
#, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr "Message to %1$s on %2$s"
-#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
-#: lib/accountsettingsaction.php:120
+#: lib/accountsettingsaction.php:108 lib/personalgroupnav.php:109
+msgid "Profile"
+msgstr "Profile"
+
+#: lib/accountsettingsaction.php:109
+msgid "Change your profile settings"
+msgstr "Change your profile settings"
+
+#: lib/accountsettingsaction.php:112
+msgid "Upload an avatar"
+msgstr "Upload an avatar"
+
+#: lib/accountsettingsaction.php:115
+msgid "Change your password"
+msgstr "Change your password"
+
+#: lib/accountsettingsaction.php:118
+msgid "Change email handling"
+msgstr "Change e-mail handling"
+
+#: lib/accountsettingsaction.php:120 lib/groupnav.php:118
msgid "Design"
msgstr ""
-#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
+#: lib/accountsettingsaction.php:121
#, fuzzy
msgid "Design your profile"
msgstr "User profile"
-#: lib/action.php:712 lib/action.php:727
+#: lib/accountsettingsaction.php:123
+msgid "Other"
+msgstr "Other"
+
+#: lib/accountsettingsaction.php:124
+msgid "Other options"
+msgstr "Other options"
+
+#: lib/action.php:144
+#, php-format
+msgid "%s - %s"
+msgstr "%s - %s"
+
+#: lib/action.php:159
+msgid "Untitled page"
+msgstr "Untitled page"
+
+#: lib/action.php:424
+msgid "Primary site navigation"
+msgstr "Primary site navigation"
+
+#: lib/action.php:430
+msgid "Home"
+msgstr "Home"
+
+#: lib/action.php:430
+msgid "Personal profile and friends timeline"
+msgstr "Personal profile and friends timeline"
+
+#: lib/action.php:432
+msgid "Account"
+msgstr "Account"
+
+#: lib/action.php:432
+msgid "Change your email, avatar, password, profile"
+msgstr "Change your e-mail, avatar, password, profile"
+
+#: lib/action.php:435
+msgid "Connect"
+msgstr "Connect"
+
+#: lib/action.php:435
+#, fuzzy
+msgid "Connect to services"
+msgstr "Could not redirect to server: %s"
+
+#: lib/action.php:439 lib/subgroupnav.php:105
+msgid "Invite"
+msgstr "Invite"
+
+#: lib/action.php:440 lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Invite friends and colleagues to join you on %s"
+
+#: lib/action.php:445
+msgid "Logout"
+msgstr "Logout"
+
+#: lib/action.php:445
+msgid "Logout from the site"
+msgstr "Logout from the site"
+
+#: lib/action.php:450
+msgid "Create an account"
+msgstr "Create an account"
+
+#: lib/action.php:453
+msgid "Login to the site"
+msgstr "Login to the site"
+
+#: lib/action.php:456 lib/action.php:719
+msgid "Help"
+msgstr "Help"
+
+#: lib/action.php:456
+msgid "Help me!"
+msgstr "Help me!"
+
+#: lib/action.php:459
+msgid "Search"
+msgstr "Search"
+
+#: lib/action.php:459
+msgid "Search for people or text"
+msgstr "Search for people or text"
+
+#: lib/action.php:480
+msgid "Site notice"
+msgstr "Site notice"
+
+#: lib/action.php:546
+msgid "Local views"
+msgstr "Local views"
+
+#: lib/action.php:612
+msgid "Page notice"
+msgstr "Page notice"
+
+#: lib/action.php:714
+msgid "Secondary site navigation"
+msgstr "Secondary site navigation"
+
+#: lib/action.php:721
+msgid "About"
+msgstr "About"
+
+#: lib/action.php:723
+msgid "FAQ"
+msgstr "F.A.Q."
+
+#: lib/action.php:727
msgid "TOS"
msgstr ""
+#: lib/action.php:730
+msgid "Privacy"
+msgstr "Privacy"
+
+#: lib/action.php:732
+msgid "Source"
+msgstr "Source"
+
+#: lib/action.php:734
+msgid "Contact"
+msgstr "Contact"
+
+#: lib/action.php:736
+#, fuzzy
+msgid "Badge"
+msgstr "Nudge"
+
+#: lib/action.php:764
+msgid "StatusNet software license"
+msgstr "StatusNet software licence"
+
+#: lib/action.php:767
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%). "
+msgstr ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%)."
+
+#: lib/action.php:769
+#, php-format
+msgid "**%%site.name%%** is a microblogging service. "
+msgstr "**%%site.name%%** is a microblogging service."
+
+#: lib/action.php:771
+#, php-format
+msgid ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public License](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+msgstr ""
+"It runs the [StatusNet](http://status.net/) microblogging software, version %"
+"s, available under the [GNU Affero General Public Licence](http://www.fsf."
+"org/licensing/licenses/agpl-3.0.html)."
+
+#: lib/action.php:785
+#, fuzzy
+msgid "Site content license"
+msgstr "StatusNet software licence"
+
+#: lib/action.php:794
+msgid "All "
+msgstr "All "
+
+#: lib/action.php:799
+msgid "license."
+msgstr "licence."
+
+#: lib/action.php:1053
+msgid "Pagination"
+msgstr "Pagination"
+
+#: lib/action.php:1062
+msgid "After"
+msgstr "After"
+
+#: lib/action.php:1070
+msgid "Before"
+msgstr "Before"
+
+#: lib/action.php:1119
+msgid "There was a problem with your session token."
+msgstr "There was a problem with your session token."
+
#: lib/attachmentlist.php:87
msgid "Attachments"
msgstr ""
@@ -6896,6 +3579,223 @@ msgstr ""
msgid "Tags for this attachment"
msgstr ""
+#: lib/channel.php:138 lib/channel.php:158
+msgid "Command results"
+msgstr "Command results"
+
+#: lib/channel.php:210
+msgid "Command complete"
+msgstr "Command complete"
+
+#: lib/channel.php:221
+msgid "Command failed"
+msgstr "Command failed"
+
+#: lib/command.php:44
+msgid "Sorry, this command is not yet implemented."
+msgstr "Sorry, this command is not yet implemented."
+
+#: lib/command.php:88
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s"
+msgstr "Couldn't update user with confirmed e-mail address."
+
+#: lib/command.php:92
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#: lib/command.php:99
+#, fuzzy, php-format
+msgid "Nudge sent to %s"
+msgstr "Nudge sent"
+
+#: lib/command.php:126
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+
+#: lib/command.php:152 lib/command.php:400
+msgid "Notice with that id does not exist"
+msgstr ""
+
+#: lib/command.php:168 lib/command.php:416 lib/command.php:471
+msgid "User has no last notice"
+msgstr "User has no last notice"
+
+#: lib/command.php:190
+msgid "Notice marked as fave."
+msgstr "Notice marked as fave."
+
+#: lib/command.php:315
+#, php-format
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#: lib/command.php:318
+#, php-format
+msgid "Fullname: %s"
+msgstr "Fullname: %s"
+
+#: lib/command.php:321
+#, php-format
+msgid "Location: %s"
+msgstr "Location: %s"
+
+#: lib/command.php:324
+#, php-format
+msgid "Homepage: %s"
+msgstr "Homepage: %s"
+
+#: lib/command.php:327
+#, php-format
+msgid "About: %s"
+msgstr "About: %s"
+
+#: lib/command.php:358 scripts/xmppdaemon.php:321
+#, fuzzy, php-format
+msgid "Message too long - maximum is %d characters, you sent %d"
+msgstr "Message too long - maximum is 140 characters, you sent %d"
+
+#: lib/command.php:377
+msgid "Error sending direct message."
+msgstr "Error sending direct message."
+
+#: lib/command.php:431
+#, fuzzy, php-format
+msgid "Notice too long - maximum is %d characters, you sent %d"
+msgstr "Message too long - maximum is 140 characters, you sent %d"
+
+#: lib/command.php:439
+#, fuzzy, php-format
+msgid "Reply to %s sent"
+msgstr "Reply to this notice"
+
+#: lib/command.php:441
+#, fuzzy
+msgid "Error saving notice."
+msgstr "Problem saving notice."
+
+#: lib/command.php:495
+msgid "Specify the name of the user to subscribe to"
+msgstr "Specify the name of the user to subscribe to"
+
+#: lib/command.php:502
+#, php-format
+msgid "Subscribed to %s"
+msgstr "Subscribed to %s"
+
+#: lib/command.php:523
+msgid "Specify the name of the user to unsubscribe from"
+msgstr "Specify the name of the user to unsubscribe from"
+
+#: lib/command.php:530
+#, php-format
+msgid "Unsubscribed from %s"
+msgstr "Unsubscribed from %s"
+
+#: lib/command.php:548 lib/command.php:571
+msgid "Command not yet implemented."
+msgstr "Command not yet implemented."
+
+#: lib/command.php:551
+msgid "Notification off."
+msgstr "Notification off."
+
+#: lib/command.php:553
+msgid "Can't turn off notification."
+msgstr "Can't turn off notification."
+
+#: lib/command.php:574
+msgid "Notification on."
+msgstr "Notification on."
+
+#: lib/command.php:576
+msgid "Can't turn on notification."
+msgstr "Can't turn on notification."
+
+#: lib/command.php:597
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "Could not create OpenID from: %s"
+
+#: lib/command.php:602
+#, php-format
+msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgstr ""
+
+#: lib/command.php:613
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"leave - unsubscribe from user\n"
+"d - direct message to user\n"
+"get - get last notice from user\n"
+"whois - get profile info on user\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"reply # - reply to notice with a given id\n"
+"reply - reply to the last notice from user\n"
+"join - join group\n"
+"login - Get a link to login to the web interface\n"
+"drop - leave group\n"
+"stats - get your stats\n"
+"stop - same as 'off'\n"
+"quit - same as 'off'\n"
+"sub - same as 'follow'\n"
+"unsub - same as 'leave'\n"
+"last - same as 'get'\n"
+"on - not yet implemented.\n"
+"off - not yet implemented.\n"
+"nudge - remind a user to update.\n"
+"invite - not yet implemented.\n"
+"track - not yet implemented.\n"
+"untrack - not yet implemented.\n"
+"track off - not yet implemented.\n"
+"untrack all - not yet implemented.\n"
+"tracks - not yet implemented.\n"
+"tracking - not yet implemented.\n"
+msgstr ""
+
+#: lib/common.php:191
+#, fuzzy
+msgid "No configuration file found. "
+msgstr "No confirmation code."
+
+#: lib/common.php:192
+msgid "I looked for configuration files in the following places: "
+msgstr ""
+
+#: lib/common.php:193
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#: lib/common.php:194
+#, fuzzy
+msgid "Go to the installer."
+msgstr "Login to the site"
+
+#: lib/connectsettingsaction.php:110
+msgid "IM"
+msgstr "I.M."
+
+#: lib/connectsettingsaction.php:111
+msgid "Updates by instant messenger (IM)"
+msgstr "Updates by instant messenger (I.M.)"
+
+#: lib/connectsettingsaction.php:116
+msgid "Updates by SMS"
+msgstr "Updates by SMS"
+
+#: lib/dberroraction.php:60
+msgid "Database error"
+msgstr ""
+
#: lib/designsettings.php:101
msgid "Change background image"
msgstr ""
@@ -6945,6 +3845,10 @@ msgstr "Connect"
msgid "Sidebar"
msgstr "Search"
+#: lib/designsettings.php:217
+msgid "Text"
+msgstr "Text"
+
#: lib/designsettings.php:230
#, fuzzy
msgid "Links"
@@ -6966,576 +3870,75 @@ msgstr ""
msgid "Save design"
msgstr ""
-#: lib/designsettings.php:378 lib/designsettings.php:369
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
-#: lib/designsettings.php:474 lib/designsettings.php:465
#: lib/designsettings.php:468
msgid "Design defaults restored."
msgstr ""
-#: lib/groupeditform.php:181 lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+#: lib/disfavorform.php:114 lib/disfavorform.php:140
+msgid "Disfavor this notice"
+msgstr "Disfavour this notice"
+
+#: lib/favorform.php:114 lib/favorform.php:140
+msgid "Favor this notice"
+msgstr "Favour this notice"
+
+#: lib/favorform.php:140
+msgid "Favor"
+msgstr "Favour"
+
+#: lib/feedlist.php:64
+msgid "Export data"
+msgstr "Export data"
+
+#: lib/feed.php:85
+msgid "RSS 1.0"
msgstr ""
-#: lib/groupnav.php:100
-#, fuzzy
-msgid "Blocked"
-msgstr "Block"
-
-#: lib/groupnav.php:101
-#, fuzzy, php-format
-msgid "%s blocked users"
-msgstr "Block user"
-
-#: lib/groupnav.php:119
-#, fuzzy, php-format
-msgid "Add or edit %s design"
-msgstr "Add or edit %s logo"
-
-#: lib/mail.php:556
-#, php-format
-msgid ""
-"%1$s just added your notice from %2$s as one of their favorites.\n"
-"\n"
-"The URL of your notice is:\n"
-"\n"
-"%3$s\n"
-"\n"
-"The text of your notice is:\n"
-"\n"
-"%4$s\n"
-"\n"
-"You can see the list of %1$s's favorites here:\n"
-"\n"
-"%5$s\n"
-"\n"
-"Faithfully yours,\n"
-"%6$s\n"
+#: lib/feed.php:87
+msgid "RSS 2.0"
msgstr ""
-#: lib/mail.php:646
-#, php-format
-msgid "Your Twitter bridge has been disabled."
+#: lib/feed.php:89
+msgid "Atom"
msgstr ""
-#: lib/mail.php:648
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
-"disabled. Your Twitter credentials have either changed (did you recently "
-"change your Twitter password?) or you have otherwise revoked our access to "
-"your Twitter account.\n"
-"\n"
-"You can re-enable your Twitter bridge by visiting your Twitter settings "
-"page:\n"
-"\n"
-"\t%2$s\n"
-"\n"
-"Regards,\n"
-"%3$s\n"
+#: lib/feed.php:91
+msgid "FOAF"
msgstr ""
-#: lib/mail.php:682
-#, php-format
-msgid "Your %s Facebook application access has been disabled."
-msgstr ""
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr "Filter tags"
-#: lib/mail.php:685
-#, php-format
-msgid ""
-"Hi, %1$s. We're sorry to inform you that we are unable to update your "
-"Facebook status from %s, and have disabled the Facebook application for your "
-"account. This may be because you have removed the Facebook application's "
-"authorization, or have deleted your Facebook account. You can re-enable the "
-"Facebook application and automatic status updating by re-installing the %1$s "
-"Facebook application.\n"
-"\n"
-"Regards,\n"
-"\n"
-"%1$s"
-msgstr ""
-
-#: lib/mailbox.php:139
-msgid ""
-"You have no private messages. You can send private message to engage other "
-"users in conversation. People can send you messages for your eyes only."
-msgstr ""
-
-#: lib/noticeform.php:154 lib/noticeform.php:180
-msgid "Attach"
-msgstr ""
-
-#: lib/noticeform.php:158 lib/noticeform.php:184
-msgid "Attach a file"
-msgstr ""
-
-#: lib/noticelist.php:436 lib/noticelist.php:478
-#, fuzzy
-msgid "in context"
-msgstr "No content!"
-
-#: lib/profileaction.php:177
-#, fuzzy
-msgid "User ID"
-msgstr "User"
-
-#: lib/searchaction.php:156 lib/searchaction.php:162
-#, fuzzy
-msgid "Search help"
-msgstr "Search"
-
-#: lib/subscriberspeopleselftagcloudsection.php:48
-#: lib/subscriptionspeopleselftagcloudsection.php:48
-msgid "People Tagcloud as self-tagged"
-msgstr ""
-
-#: lib/subscriberspeopletagcloudsection.php:48
-#: lib/subscriptionspeopletagcloudsection.php:48
-msgid "People Tagcloud as tagged"
-msgstr ""
-
-#: lib/webcolor.php:82
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Homepage is not a valid URL."
-
-#: lib/webcolor.php:123
-#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
-msgstr ""
-
-#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
-#: actions/showfavorites.php:137 actions/tag.php:51
-#, fuzzy
-msgid "No such page"
-msgstr "No such tag."
-
-#: actions/apidirectmessage.php:89
-#, fuzzy, php-format
-msgid "Direct messages from %s"
-msgstr "Direct messages to %s"
-
-#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
-#, fuzzy, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr "That's too long. Max message size is 140 chars."
-
-#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
-msgid "Could not unfollow user: User not found."
-msgstr "Could not follow user: User not found."
-
-#: actions/apifriendshipsdestroy.php:120
-msgid "You cannot unfollow yourself!"
-msgstr ""
-
-#: actions/apigroupcreate.php:261
-#, fuzzy, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "description is too long (max 140 chars)."
-
-#: actions/apigroupjoin.php:110
-#, fuzzy
-msgid "You are already a member of that group."
-msgstr "You are already a member of that group"
-
-#: actions/apigroupjoin.php:138
-#, fuzzy, php-format
-msgid "Could not join user %s to group %s."
-msgstr "Could not join user %s to group %s"
-
-#: actions/apigroupleave.php:114
-#, fuzzy
-msgid "You are not a member of this group."
-msgstr "You are not a member of that group."
-
-#: actions/apigroupleave.php:124
-#, fuzzy, php-format
-msgid "Could not remove user %s to group %s."
-msgstr "Could not remove user %s to group %s"
-
-#: actions/apigrouplist.php:95
-#, fuzzy, php-format
-msgid "%s's groups"
-msgstr "%s groups"
-
-#: actions/apigrouplist.php:103
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s."
-msgstr "Groups %s is a member of"
-
-#: actions/apigrouplistall.php:94
-#, fuzzy, php-format
-msgid "groups on %s"
-msgstr "Group actions"
-
-#: actions/apistatusesshow.php:138
-#, fuzzy
-msgid "Status deleted."
-msgstr "Avatar updated."
-
-#: actions/apistatusesupdate.php:132
-#: actions/apiaccountupdateprofileimage.php:99
-msgid "Unable to handle that much POST data!"
-msgstr ""
-
-#: actions/apistatusesupdate.php:145 actions/newnotice.php:155
-#: scripts/maildaemon.php:71 actions/apistatusesupdate.php:152
-#, fuzzy, php-format
-msgid "That's too long. Max notice size is %d chars."
-msgstr "That's too long. Max notice size is 140 chars."
-
-#: actions/apistatusesupdate.php:209 actions/newnotice.php:178
-#: actions/apistatusesupdate.php:216
-#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
-
-#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
-#, fuzzy
-msgid "Unsupported format."
-msgstr "Unsupported image file format."
-
-#: actions/bookmarklet.php:50
-#, fuzzy
-msgid "Post to "
-msgstr "Photo"
-
-#: actions/editgroup.php:201 actions/newgroup.php:145
-#, fuzzy, php-format
-msgid "description is too long (max %d chars)."
-msgstr "description is too long (max 140 chars)."
-
-#: actions/favoritesrss.php:115
-#, fuzzy, php-format
-msgid "Updates favored by %1$s on %2$s!"
-msgstr "Updates from %1$s on %2$s!"
-
-#: actions/finishremotesubscribe.php:80
-#, fuzzy
-msgid "User being listened to does not exist."
-msgstr "User being listened to doesn't exist."
-
-#: actions/finishremotesubscribe.php:106
-#, fuzzy
-msgid "You are not authorized."
-msgstr "Not authorised."
-
-#: actions/finishremotesubscribe.php:109
-#, fuzzy
-msgid "Could not convert request token to access token."
-msgstr "Couldn't convert request tokens to access tokens."
-
-#: actions/finishremotesubscribe.php:114
-#, fuzzy
-msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Unknown version of OMB protocol."
-
-#: actions/getfile.php:75
-#, fuzzy
-msgid "No such file."
-msgstr "No such notice."
-
-#: actions/getfile.php:79
-#, fuzzy
-msgid "Cannot read file."
-msgstr "Lost our file."
-
-#: actions/grouprss.php:133
-#, fuzzy, php-format
-msgid "Updates from members of %1$s on %2$s!"
-msgstr "Updates from %1$s on %2$s!"
-
-#: actions/imsettings.php:89
-#, fuzzy
-msgid "IM is not available."
-msgstr "This page is not available in a "
-
-#: actions/login.php:259 actions/login.php:286
-#, fuzzy, php-format
-msgid ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account."
-msgstr ""
-"Login with your username and password. Don't have a username yet? [Register]"
-"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%"
-"%). "
-
-#: actions/noticesearchrss.php:89
-#, fuzzy, php-format
-msgid "Updates with \"%s\""
-msgstr "Updates from %1$s on %2$s!"
-
-#: actions/noticesearchrss.php:91
-#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr "All updates matching search term \"%s\""
-
-#: actions/oembed.php:157
-#, fuzzy
-msgid "content type "
-msgstr "Connect"
-
-#: actions/oembed.php:160
-msgid "Only "
-msgstr ""
-
-#: actions/postnotice.php:90
-#, php-format
-msgid "Notice license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/profilesettings.php:122 actions/register.php:454
-#: actions/register.php:460
-#, fuzzy, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Describe yourself and your interests in 140 chars"
-
-#: actions/profilesettings.php:125 actions/register.php:457
-#: actions/register.php:463
-#, fuzzy
-msgid "Describe yourself and your interests"
-msgstr "Describe yourself and your "
-
-#: actions/profilesettings.php:221 actions/register.php:217
-#: actions/register.php:223
-#, fuzzy, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Bio is too long (max 140 chars)."
-
-#: actions/register.php:336 actions/register.php:342
-msgid ""
-"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
-msgstr ""
-
-#: actions/remotesubscribe.php:168
-#, fuzzy
-msgid ""
-"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)."
-msgstr "Not a valid profile URL (no YADIS document)."
-
-#: actions/remotesubscribe.php:176
-#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
-msgstr "That's a local profile! Login to subscribe."
-
-#: actions/remotesubscribe.php:183
-#, fuzzy
-msgid "Couldn’t get a request token."
-msgstr "Couldn't get a request token."
-
-#: actions/replies.php:144
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 1.0)"
-msgstr "Notice feed for %s"
-
-#: actions/replies.php:151
-#, fuzzy, php-format
-msgid "Replies feed for %s (RSS 2.0)"
-msgstr "Notice feed for %s"
-
-#: actions/replies.php:158
-#, php-format
-msgid "Replies feed for %s (Atom)"
-msgstr "Notice feed for %s"
-
-#: actions/repliesrss.php:72
-#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
-msgstr "Message to %1$s on %2$s"
-
-#: actions/showfavorites.php:170
-#, php-format
-msgid "Feed for favorites of %s (RSS 1.0)"
-msgstr "Feed for friends of %s"
-
-#: actions/showfavorites.php:177
-#, php-format
-msgid "Feed for favorites of %s (RSS 2.0)"
-msgstr "Feed for friends of %s"
-
-#: actions/showfavorites.php:184
-#, php-format
-msgid "Feed for favorites of %s (Atom)"
-msgstr "Feed for friends of %s"
-
-#: actions/showfavorites.php:211
-#, php-format
-msgid ""
-"%s hasn't added any notices to his favorites yet. Why not [register an "
-"account](%%%%action.register%%%%) and then post something interesting they "
-"would add to their favorites :)"
-msgstr ""
-
-#: actions/showgroup.php:345
-#, php-format
-msgid "FOAF for %s group"
-msgstr "Outbox for %s"
-
-#: actions/shownotice.php:90
-#, fuzzy
-msgid "Notice deleted."
-msgstr "Notice posted"
-
-#: actions/smssettings.php:91
-#, fuzzy
-msgid "SMS is not available."
-msgstr "This page is not available in a "
-
-#: actions/tag.php:92
-#, fuzzy, php-format
-msgid "Notice feed for tag %s (RSS 2.0)"
-msgstr "Notice feed for %s"
-
-#: actions/updateprofile.php:62 actions/userauthorization.php:330
-#, php-format
-msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:110
-#, fuzzy
-msgid ""
-"Please check these details to make sure that you want to subscribe to this "
-"user’s notices. If you didn’t just ask to subscribe to someone’s notices, "
-"click “Reject”."
-msgstr ""
-"Please check these details to make sure that you want to subscribe to this "
-"user's notices. If you didn't just ask to subscribe to someone's notices, "
-"click \"Cancel\"."
-
-#: actions/userauthorization.php:249
-#, fuzzy
-msgid ""
-"The subscription has been authorized, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to authorize the "
-"subscription. Your subscription token is:"
-msgstr ""
-"The subscription has been authorised, but no callback URL was passed. Check "
-"with the site's instructions for details on how to authorise the "
-"subscription. Your subscription token is:"
-
-#: actions/userauthorization.php:261
-#, fuzzy
-msgid ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site’s instructions for details on how to fully reject the "
-"subscription."
-msgstr ""
-"The subscription has been rejected, but no callback URL was passed. Check "
-"with the site's instructions for details on how to fully reject the "
-"subscription."
-
-#: actions/userauthorization.php:296
-#, php-format
-msgid "Listener URI ‘%s’ not found here"
-msgstr ""
-
-#: actions/userauthorization.php:301
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:307
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:322
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:338
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:343
-#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Can't read avatar URL '%s'"
-
-#: actions/userauthorization.php:348
-#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Wrong image type for '%s'"
-
-#: lib/action.php:435
-#, fuzzy
-msgid "Connect to services"
-msgstr "Could not redirect to server: %s"
-
-#: lib/action.php:785
-#, fuzzy
-msgid "Site content license"
-msgstr "StatusNet software licence"
-
-#: lib/command.php:88
-#, fuzzy, php-format
-msgid "Could not find a user with nickname %s"
-msgstr "Couldn't update user with confirmed e-mail address."
-
-#: lib/command.php:92
-msgid "It does not make a lot of sense to nudge yourself!"
-msgstr ""
-
-#: lib/command.php:99
-#, fuzzy, php-format
-msgid "Nudge sent to %s"
-msgstr "Nudge sent"
-
-#: lib/command.php:152 lib/command.php:400
-msgid "Notice with that id does not exist"
-msgstr ""
-
-#: lib/command.php:358 scripts/xmppdaemon.php:321
-#, fuzzy, php-format
-msgid "Message too long - maximum is %d characters, you sent %d"
-msgstr "Message too long - maximum is 140 characters, you sent %d"
-
-#: lib/command.php:431
-#, fuzzy, php-format
-msgid "Notice too long - maximum is %d characters, you sent %d"
-msgstr "Message too long - maximum is 140 characters, you sent %d"
-
-#: lib/command.php:439
-#, fuzzy, php-format
-msgid "Reply to %s sent"
-msgstr "Reply to this notice"
-
-#: lib/command.php:441
-#, fuzzy
-msgid "Error saving notice."
-msgstr "Problem saving notice."
-
-#: lib/common.php:191
-#, fuzzy
-msgid "No configuration file found. "
-msgstr "No confirmation code."
-
-#: lib/common.php:192
-msgid "I looked for configuration files in the following places: "
-msgstr ""
-
-#: lib/common.php:193
-msgid "You may wish to run the installer to fix this."
-msgstr ""
-
-#: lib/common.php:194
-#, fuzzy
-msgid "Go to the installer."
-msgstr "Login to the site"
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr "All"
#: lib/galleryaction.php:139
#, fuzzy
msgid "Select tag to filter"
msgstr "Select a carrier"
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr "Tag"
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr "Choose a tag to narrow list"
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr "Go"
+
+#: lib/groupeditform.php:163
+msgid "URL of the homepage or blog of the group or topic"
+msgstr "URL of the homepage or blog of the group or topic"
+
#: lib/groupeditform.php:168
#, fuzzy
msgid "Describe the group or topic"
@@ -7546,11 +3949,282 @@ msgstr "Describe the group or topic in 140 chars"
msgid "Describe the group or topic in %d characters"
msgstr "Describe the group or topic in 140 chars"
+#: lib/groupeditform.php:172
+msgid "Description"
+msgstr "Description"
+
+#: lib/groupeditform.php:179
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+msgstr ""
+"Location for the group, if any, like \"City, State (or Region), Country\""
+
+#: lib/groupeditform.php:187
+#, php-format
+msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+msgstr ""
+
+#: lib/groupnav.php:84 lib/searchgroupnav.php:84
+msgid "Group"
+msgstr "Group"
+
+#: lib/groupnav.php:100
+#, fuzzy
+msgid "Blocked"
+msgstr "Block"
+
+#: lib/groupnav.php:101
+#, fuzzy, php-format
+msgid "%s blocked users"
+msgstr "Block user"
+
+#: lib/groupnav.php:107
+#, php-format
+msgid "Edit %s group properties"
+msgstr "Edit %s group properties"
+
+#: lib/groupnav.php:112
+msgid "Logo"
+msgstr "Logo"
+
+#: lib/groupnav.php:113
+#, php-format
+msgid "Add or edit %s logo"
+msgstr "Add or edit %s logo"
+
+#: lib/groupnav.php:119
+#, fuzzy, php-format
+msgid "Add or edit %s design"
+msgstr "Add or edit %s logo"
+
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Groups with most members"
+
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Groups with most posts"
+
+#: lib/grouptagcloudsection.php:56
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr "Tags in %s group's notices"
+
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr "This page is not available in a media type you accept"
+
+#: lib/imagefile.php:75
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "You can upload a logo image for your group."
+
+#: lib/imagefile.php:80
+msgid "Partial upload."
+msgstr "Partial upload."
+
+#: lib/imagefile.php:88 lib/mediafile.php:170
+msgid "System error uploading file."
+msgstr "System error uploading file."
+
+#: lib/imagefile.php:96
+msgid "Not an image or corrupt file."
+msgstr "Not an image or corrupt file."
+
+#: lib/imagefile.php:105
+msgid "Unsupported image file format."
+msgstr "Unsupported image file format."
+
+#: lib/imagefile.php:118
+msgid "Lost our file."
+msgstr "Lost our file."
+
+#: lib/imagefile.php:150 lib/imagefile.php:197
+msgid "Unknown file type"
+msgstr "Unknown file type"
+
#: lib/jabber.php:192
#, php-format
msgid "notice id: %s"
msgstr "New notice"
+#: lib/joinform.php:114
+msgid "Join"
+msgstr "Join"
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "Leave"
+
+#: lib/logingroupnav.php:80
+msgid "Login with a username and password"
+msgstr "Login with a username and password"
+
+#: lib/logingroupnav.php:86
+msgid "Sign up for a new account"
+msgstr "Sign up for a new account"
+
+#: lib/mailbox.php:89
+msgid "Only the user can read their own mailboxes."
+msgstr "Only the user can read their own mailboxes."
+
+#: lib/mailbox.php:139
+msgid ""
+"You have no private messages. You can send private message to engage other "
+"users in conversation. People can send you messages for your eyes only."
+msgstr ""
+
+#: lib/mailbox.php:227 lib/noticelist.php:424
+#, fuzzy
+msgid "from"
+msgstr "from"
+
+#: lib/mail.php:172
+msgid "Email address confirmation"
+msgstr "E-mail address confirmation"
+
+#: lib/mail.php:174
+#, php-format
+msgid ""
+"Hey, %s.\n"
+"\n"
+"Someone just entered this email address on %s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%s\n"
+msgstr ""
+
+#: lib/mail.php:235
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr "%1$s is now listening to your notices on %2$s."
+
+#: lib/mail.php:240
+#, fuzzy, php-format
+msgid ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"%4$s%5$s%6$s\n"
+"Faithfully yours,\n"
+"%7$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %8$s\n"
+msgstr ""
+"%1$s is now listening to your notices on %2$s.\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s.\n"
+
+#: lib/mail.php:253
+#, php-format
+msgid "Location: %s\n"
+msgstr "Location: %s\n"
+
+#: lib/mail.php:255
+#, php-format
+msgid "Homepage: %s\n"
+msgstr "Homepage: %s\n"
+
+#: lib/mail.php:257
+#, php-format
+msgid ""
+"Bio: %s\n"
+"\n"
+msgstr ""
+"Bio: %s\n"
+"\n"
+
+#: lib/mail.php:285
+#, php-format
+msgid "New email address for posting to %s"
+msgstr "New e-mail address for posting to %s"
+
+#: lib/mail.php:288
+#, php-format
+msgid ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send email to %2$s to post new messages.\n"
+"\n"
+"More email instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+msgstr ""
+"You have a new posting address on %1$s.\n"
+"\n"
+"Send e-mail to %2$s to post new messages.\n"
+"\n"
+"More e-mail instructions at %3$s.\n"
+"\n"
+"Faithfully yours,\n"
+"%4$s"
+
+#: lib/mail.php:412
+#, php-format
+msgid "%s status"
+msgstr "%s status"
+
+#: lib/mail.php:438
+msgid "SMS confirmation"
+msgstr "SMS confirmation"
+
+#: lib/mail.php:462
+#, php-format
+msgid "You've been nudged by %s"
+msgstr "You've been nudged by %s"
+
+#: lib/mail.php:466
+#, php-format
+msgid ""
+"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
+"to post some news.\n"
+"\n"
+"So let's hear from you :)\n"
+"\n"
+"%3$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%4$s\n"
+msgstr ""
+
+#: lib/mail.php:509
+#, php-format
+msgid "New private message from %s"
+msgstr "New private message from %s"
+
+#: lib/mail.php:513
+#, php-format
+msgid ""
+"%1$s (%2$s) sent you a private message:\n"
+"\n"
+"------------------------------------------------------\n"
+"%3$s\n"
+"------------------------------------------------------\n"
+"\n"
+"You can reply to their message here:\n"
+"\n"
+"%4$s\n"
+"\n"
+"Do not reply to this email. It will not get to them.\n"
+"\n"
+"With kind regards,\n"
+"%5$s\n"
+msgstr ""
+
#: lib/mail.php:554
#, fuzzy, php-format
msgid "%s (@%s) added your notice as a favorite"
@@ -7597,76 +4271,418 @@ msgid ""
"\n"
msgstr ""
-#: lib/mailbox.php:227 lib/noticelist.php:424
-#, fuzzy
-msgid "from"
-msgstr "from"
+#: lib/mediafile.php:98 lib/mediafile.php:123
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#: lib/mediafile.php:142
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: lib/mediafile.php:147
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: lib/mediafile.php:152
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: lib/mediafile.php:159
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: lib/mediafile.php:162
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: lib/mediafile.php:165
+msgid "File upload stopped by extension."
+msgstr ""
#: lib/mediafile.php:179 lib/mediafile.php:216
msgid "File exceeds user's quota!"
msgstr ""
+#: lib/mediafile.php:196 lib/mediafile.php:233
+msgid "File could not be moved to destination directory."
+msgstr ""
+
#: lib/mediafile.php:201 lib/mediafile.php:237
msgid "Could not determine file's mime-type!"
msgstr "Could not retrieve public stream."
+#: lib/mediafile.php:270
+#, php-format
+msgid " Try using another %s format."
+msgstr ""
+
+#: lib/mediafile.php:275
+#, php-format
+msgid "%s is not a supported filetype on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr "Send a direct notice"
+
+#: lib/messageform.php:146
+msgid "To"
+msgstr "To"
+
+#: lib/messageform.php:162 lib/noticeform.php:173
+msgid "Available characters"
+msgstr "Available characters"
+
+#: lib/noticeform.php:145
+msgid "Send a notice"
+msgstr "Send a notice"
+
+#: lib/noticeform.php:158
+#, php-format
+msgid "What's up, %s?"
+msgstr "What's up, %s?"
+
+#: lib/noticeform.php:180
+msgid "Attach"
+msgstr ""
+
+#: lib/noticeform.php:184
+msgid "Attach a file"
+msgstr ""
+
+#: lib/noticelist.php:478
+#, fuzzy
+msgid "in context"
+msgstr "No content!"
+
+#: lib/noticelist.php:498
+msgid "Reply to this notice"
+msgstr "Reply to this notice"
+
+#: lib/noticelist.php:499
+msgid "Reply"
+msgstr "Reply"
+
+#: lib/nudgeform.php:116
+msgid "Nudge this user"
+msgstr "Nudge this user"
+
+#: lib/nudgeform.php:128
+msgid "Nudge"
+msgstr "Nudge"
+
+#: lib/nudgeform.php:128
+msgid "Send a nudge to this user"
+msgstr "Send a nudge to this user"
+
+#: lib/oauthstore.php:283
+msgid "Error inserting new profile"
+msgstr "Error inserting new profile."
+
+#: lib/oauthstore.php:291
+msgid "Error inserting avatar"
+msgstr "Error inserting avatar."
+
+#: lib/oauthstore.php:311
+msgid "Error inserting remote profile"
+msgstr "Error inserting remote profile."
+
#: lib/oauthstore.php:345
#, fuzzy
msgid "Duplicate notice"
msgstr "Delete notice"
-#: actions/login.php:110 actions/login.php:120
-#, fuzzy
-msgid "Invalid or expired token."
-msgstr "Invalid notice content"
+#: lib/oauthstore.php:487
+msgid "Couldn't insert new subscription."
+msgstr "Couldn't insert new subscription."
-#: lib/command.php:597
-#, fuzzy, php-format
-msgid "Could not create login token for %s"
-msgstr "Could not create OpenID from: %s"
+#: lib/personalgroupnav.php:99
+msgid "Personal"
+msgstr "Personal"
-#: lib/command.php:602
+#: lib/personalgroupnav.php:104
+msgid "Replies"
+msgstr "Replies"
+
+#: lib/personalgroupnav.php:114
+msgid "Favorites"
+msgstr "Favourites"
+
+#: lib/personalgroupnav.php:115
+msgid "User"
+msgstr "User"
+
+#: lib/personalgroupnav.php:124
+msgid "Inbox"
+msgstr "Inbox"
+
+#: lib/personalgroupnav.php:125
+msgid "Your incoming messages"
+msgstr "Your incoming messages"
+
+#: lib/personalgroupnav.php:129
+msgid "Outbox"
+msgstr "Outbox"
+
+#: lib/personalgroupnav.php:130
+msgid "Your sent messages"
+msgstr "Your sent messages"
+
+#: lib/personaltagcloudsection.php:56
#, php-format
-msgid "This link is useable only once, and is good for only 2 minutes: %s"
+msgid "Tags in %s's notices"
+msgstr "Tags in %s's notices"
+
+#: lib/profileaction.php:109 lib/profileaction.php:191 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Subscriptions"
+
+#: lib/profileaction.php:126
+msgid "All subscriptions"
+msgstr "All subscriptions"
+
+#: lib/profileaction.php:140 lib/profileaction.php:200 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Subscribers"
+
+#: lib/profileaction.php:157
+msgid "All subscribers"
+msgstr "All subscribers"
+
+#: lib/profileaction.php:177
+#, fuzzy
+msgid "User ID"
+msgstr "User"
+
+#: lib/profileaction.php:182
+msgid "Member since"
+msgstr "Member since"
+
+#: lib/profileaction.php:235
+msgid "All groups"
+msgstr "All groups"
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Public"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr "User groups"
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Recent tags"
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "Featured"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Popular"
+
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "Search"
+
+#: lib/searchaction.php:162
+#, fuzzy
+msgid "Search help"
+msgstr "Search"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr "People"
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr "Find people on this site"
+
+#: lib/searchgroupnav.php:82
+msgid "Notice"
+msgstr "Notice"
+
+#: lib/searchgroupnav.php:83
+msgid "Find content of notices"
+msgstr "Find content of notices"
+
+#: lib/searchgroupnav.php:85
+msgid "Find groups on this site"
+msgstr "Find groups on this site"
+
+#: lib/section.php:89
+msgid "Untitled section"
+msgstr "Untitled section"
+
+#: lib/section.php:106
+msgid "More..."
msgstr ""
-#: lib/imagefile.php:75
+#: lib/subgroupnav.php:83
+#, php-format
+msgid "People %s subscribes to"
+msgstr "People %s subscribes to"
+
+#: lib/subgroupnav.php:91
+#, php-format
+msgid "People subscribed to %s"
+msgstr "People subscribed to %s"
+
+#: lib/subgroupnav.php:99
+#, php-format
+msgid "Groups %s is a member of"
+msgstr "Groups %s is a member of"
+
+#: lib/subscriberspeopleselftagcloudsection.php:48
+#: lib/subscriptionspeopleselftagcloudsection.php:48
+msgid "People Tagcloud as self-tagged"
+msgstr ""
+
+#: lib/subscriberspeopletagcloudsection.php:48
+#: lib/subscriptionspeopletagcloudsection.php:48
+msgid "People Tagcloud as tagged"
+msgstr ""
+
+#: lib/subscriptionlist.php:126
+msgid "(none)"
+msgstr "(none)"
+
+#: lib/subs.php:48
+msgid "Already subscribed!"
+msgstr ""
+
+#: lib/subs.php:52
+msgid "User has blocked you."
+msgstr "User has blocked you."
+
+#: lib/subs.php:56
+msgid "Could not subscribe."
+msgstr "Could not subscribe."
+
+#: lib/subs.php:75
+msgid "Could not subscribe other to you."
+msgstr "Could not subscribe other to you."
+
+#: lib/subs.php:124
+msgid "Not subscribed!."
+msgstr "Not subscribed!"
+
+#: lib/subs.php:136
+msgid "Couldn't delete subscription."
+msgstr "Couldn't delete subscription."
+
+#: lib/tagcloudsection.php:56
+msgid "None"
+msgstr "None"
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Top posters"
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr "Unsubscribe from this user"
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr "Unsubscribe"
+
+#: lib/userprofile.php:116
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "Avatar"
+
+#: lib/userprofile.php:236
+msgid "User actions"
+msgstr "User actions"
+
+#: lib/userprofile.php:248
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "Profile settings"
+
+#: lib/userprofile.php:249
+msgid "Edit"
+msgstr ""
+
+#: lib/userprofile.php:272
+msgid "Send a direct message to this user"
+msgstr "Send a direct message to this user"
+
+#: lib/userprofile.php:273
+msgid "Message"
+msgstr "Message"
+
+#: lib/util.php:844
+msgid "a few seconds ago"
+msgstr "a few seconds ago"
+
+#: lib/util.php:846
+msgid "about a minute ago"
+msgstr "about a minute ago"
+
+#: lib/util.php:848
+#, php-format
+msgid "about %d minutes ago"
+msgstr "about %d minutes ago"
+
+#: lib/util.php:850
+msgid "about an hour ago"
+msgstr "about an hour ago"
+
+#: lib/util.php:852
+#, php-format
+msgid "about %d hours ago"
+msgstr "about %d hours ago"
+
+#: lib/util.php:854
+msgid "about a day ago"
+msgstr "about a day ago"
+
+#: lib/util.php:856
+#, php-format
+msgid "about %d days ago"
+msgstr "about %d days ago"
+
+#: lib/util.php:858
+msgid "about a month ago"
+msgstr "about a month ago"
+
+#: lib/util.php:860
+#, php-format
+msgid "about %d months ago"
+msgstr "about %d months ago"
+
+#: lib/util.php:862
+msgid "about a year ago"
+msgstr "about a year ago"
+
+#: lib/webcolor.php:82
#, fuzzy, php-format
-msgid "That file is too big. The maximum file size is %s."
-msgstr "You can upload a logo image for your group."
+msgid "%s is not a valid color!"
+msgstr "Homepage is not a valid URL."
-#: lib/command.php:613
-msgid ""
-"Commands:\n"
-"on - turn on notifications\n"
-"off - turn off notifications\n"
-"help - show this help\n"
-"follow - subscribe to user\n"
-"leave - unsubscribe from user\n"
-"d - direct message to user\n"
-"get - get last notice from user\n"
-"whois - get profile info on user\n"
-"fav - add user's last notice as a 'fave'\n"
-"fav # - add notice with the given id as a 'fave'\n"
-"reply # - reply to notice with a given id\n"
-"reply - reply to the last notice from user\n"
-"join - join group\n"
-"login - Get a link to login to the web interface\n"
-"drop - leave group\n"
-"stats - get your stats\n"
-"stop - same as 'off'\n"
-"quit - same as 'off'\n"
-"sub - same as 'follow'\n"
-"unsub - same as 'leave'\n"
-"last - same as 'get'\n"
-"on - not yet implemented.\n"
-"off - not yet implemented.\n"
-"nudge - remind a user to update.\n"
-"invite - not yet implemented.\n"
-"track - not yet implemented.\n"
-"untrack